diff --git a/css/styles.css b/css/styles.css
index 2a9051851d3a72393096516b4e6aacf42abc8e84..c3168e82acdc3b52532477d21db49ad400528fe0 100644
--- a/css/styles.css
+++ b/css/styles.css
@@ -1704,7 +1704,7 @@ svg:not(:root) {
       margin-left: 1.25rem;
       margin-right: 1.25rem;
       width: calc(50% - 2.5rem);
-      min-width: 17.1875rem; }
+      min-width: 20.8125rem; }
     @supports (display: grid) {
       .l-grid--2col {
         grid-template-columns: repeat(2, 1fr);
@@ -1748,7 +1748,7 @@ svg:not(:root) {
       margin-left: 1.25rem;
       margin-right: 1.25rem;
       width: calc(33.3333333333% - 2.5rem);
-      min-width: 17.1875rem; }
+      min-width: 20.8125rem; }
     @supports (display: grid) {
       .l-grid--3col {
         grid-template-columns: repeat(3, 1fr);
@@ -1792,7 +1792,7 @@ svg:not(:root) {
       margin-left: 1.25rem;
       margin-right: 1.25rem;
       width: calc(50% - 2.5rem);
-      min-width: 17.1875rem; }
+      min-width: 20.8125rem; }
     @supports (display: grid) {
       .l-grid--4col {
         grid-template-columns: repeat(2, 1fr);
@@ -2041,6 +2041,34 @@ svg:not(:root) {
         /* Match the width of WCMS2's wide: 753px */
         margin: inherit; }
 
+.uw-term--layout {
+  display: flex;
+  flex-direction: column;
+  justify-content: center;
+  margin-bottom: 2.5rem;
+  margin-top: 1.5rem;
+  position: relative; }
+  .uw-term--layout .l-section {
+    margin: 0 !important;
+    width: 100%; }
+  .uw-term--layout .uw-term--header {
+    width: 100%; }
+  .uw-term--layout .uw-term--results {
+    width: 100%; }
+  .uw-term--layout .uw-term--filters {
+    width: 100%; }
+    .uw-term--layout .uw-term--filters .uw-input {
+      width: 100%; }
+  @media (min-width: 48.06rem) {
+    .uw-term--layout {
+      flex-direction: row;
+      gap: 1.5rem; }
+      .uw-term--layout .uw-term--results {
+        width: clamp(320px, 900px, calc(100vw - 333px)); }
+      .uw-term--layout .uw-term--filters {
+        margin: 0;
+        width: 18.75rem; } }
+
 .path-dashboard .layout__region {
   margin-bottom: 1rem;
   margin-right: 1rem; }
@@ -3672,7 +3700,8 @@ button {
   display: flex;
   -webkit-flex-flow: row wrap;
   -ms-flex-flow: row wrap;
-  flex-flow: row wrap; }
+  flex-flow: row wrap;
+  gap: 1.25rem !important; }
   .uw-flex-grid .card {
     -webkit-box: 1;
     -moz-box: 1;
diff --git a/css/uw-dashboards.css b/css/uw-dashboards.css
index d3e9f949d7d5e52e1f2dff6d6784a1ddd0a7f208..ed39eb681f252df57e445d8a37f097dc368120b4 100644
--- a/css/uw-dashboards.css
+++ b/css/uw-dashboards.css
@@ -462,6 +462,34 @@
         /* Match the width of WCMS2's wide: 753px */
         margin: inherit; }
 
+.uw-term--layout {
+  display: flex;
+  flex-direction: column;
+  justify-content: center;
+  margin-bottom: 2.5rem;
+  margin-top: 1.5rem;
+  position: relative; }
+  .uw-term--layout .l-section {
+    margin: 0 !important;
+    width: 100%; }
+  .uw-term--layout .uw-term--header {
+    width: 100%; }
+  .uw-term--layout .uw-term--results {
+    width: 100%; }
+  .uw-term--layout .uw-term--filters {
+    width: 100%; }
+    .uw-term--layout .uw-term--filters .uw-input {
+      width: 100%; }
+  @media (min-width: 48.06rem) {
+    .uw-term--layout {
+      flex-direction: row;
+      gap: 1.5rem; }
+      .uw-term--layout .uw-term--results {
+        width: clamp(320px, 900px, calc(100vw - 333px)); }
+      .uw-term--layout .uw-term--filters {
+        margin: 0;
+        width: 18.75rem; } }
+
 .path-dashboard .layout__region {
   margin-bottom: 1rem;
   margin-right: 1rem; }
diff --git a/js/component_scripts.min.js b/js/component_scripts.min.js
index c787838a8501809a50f5b907b34e235cc4af8b11..77e7464fefc8452ad6392001101f336f7808ad63 100644
--- a/js/component_scripts.min.js
+++ b/js/component_scripts.min.js
@@ -1,3 +1,20 @@
+/**
+ * @file
+ * Ckeditor Modal.
+ */
+
+(function ($, Drupal) {
+  if ($.ui && $.ui.dialog) {
+    orig_allowInteraction = $.ui.dialog.prototype._allowInteraction;
+    $.ui.dialog.prototype._allowInteraction = function (event) {
+      if ($(event.target).closest('.cke_dialog').length) {
+        return true;
+      }
+      return orig_allowInteraction.apply(this, arguments);
+    };
+  }
+})(jQuery, Drupal);
+
 (function ($, Drupal) {
   Drupal.behaviors.cardbanner = {
     attach: function (context, settings) {
@@ -325,23 +342,6 @@ else {
   };
 })(jQuery);
 
-/**
- * @file
- * Ckeditor Modal.
- */
-
-(function ($, Drupal) {
-  if ($.ui && $.ui.dialog) {
-    orig_allowInteraction = $.ui.dialog.prototype._allowInteraction;
-    $.ui.dialog.prototype._allowInteraction = function (event) {
-      if ($(event.target).closest('.cke_dialog').length) {
-        return true;
-      }
-      return orig_allowInteraction.apply(this, arguments);
-    };
-  }
-})(jQuery, Drupal);
-
 /**
  * @file
  */
diff --git a/source/_patterns/00-config/01-mixins/_mixins.uw.scss b/source/_patterns/00-config/01-mixins/_mixins.uw.scss
index 01b16212f598da0ef8e812f8640e03d3a2c2c1ac..beee7625373d96ccd8d7092183a8177cedc23678 100644
--- a/source/_patterns/00-config/01-mixins/_mixins.uw.scss
+++ b/source/_patterns/00-config/01-mixins/_mixins.uw.scss
@@ -242,6 +242,7 @@
     @include flexbox();
   }
   @include flex-flow(row wrap);
+  gap:1.25rem !important;
 }
 // Display of grid item.
 @mixin uw-flex-grid-item(){
@@ -255,17 +256,20 @@
   @include large{
     width: 30%;
   }
+  //@include xl{
+  //  width: 23%;
+  //}
 }
 
 
 
 // Display of elements in list style.
 @mixin uw-flex-list(){
-
+//
 }
 // Display of list item.
 @mixin uw-flex-list-item(){
-
+//
 }
 
 
@@ -273,11 +277,11 @@
 
 // Display of elements in mosaic style.
 @mixin uw-flex-mosaic(){
-
+//
 }
 // Display of mosiac item.
 @mixin uw-flex-mosaic-item(){
-
+//
 }
 
 
diff --git a/source/_patterns/03-layouts/grid/_grid.scss b/source/_patterns/03-layouts/grid/_grid.scss
index 9deeb4ea0af6e817ec6c09d84ce3bb2383b71ebd..1cbeed4e90e1fb4430c6e4aa589bbcd0995b1e82 100644
--- a/source/_patterns/03-layouts/grid/_grid.scss
+++ b/source/_patterns/03-layouts/grid/_grid.scss
@@ -20,7 +20,7 @@ $grid-gutter: gesso-get-map(gutter-width);
 
   @include breakpoint(600px) {
     > * {
-      @include set-flex-column(2, $grid-gutter, 275px);
+      @include set-flex-column(2, $grid-gutter, 333px);
     }
 
     @supports (display: grid) {
@@ -38,7 +38,7 @@ $grid-gutter: gesso-get-map(gutter-width);
 
   @include breakpoint(760px) {
    > * {
-     @include set-flex-column(3, $grid-gutter, 275px);
+     @include set-flex-column(3, $grid-gutter, 333px);
    }
 
     @supports (display: grid) {
@@ -56,7 +56,7 @@ $grid-gutter: gesso-get-map(gutter-width);
 
   @include breakpoint(600px 800px) {
     > * {
-      @include set-flex-column(2, $grid-gutter, 275px);
+      @include set-flex-column(2, $grid-gutter, 333px);
     }
 
     @supports (display: grid) {
diff --git a/source/_patterns/03-layouts/layout/_layout.scss b/source/_patterns/03-layouts/layout/_layout.scss
index 81867818c033350dadfa287771d27b1c4e260fd2..c73046b0ff85792390c71ac3103a4e93f4405358 100644
--- a/source/_patterns/03-layouts/layout/_layout.scss
+++ b/source/_patterns/03-layouts/layout/_layout.scss
@@ -45,6 +45,47 @@
     }
 
   }
+}// Term page layout
+$sidebar-width: 18.75rem;
+.uw-term--layout{
+  display: flex;
+  flex-direction: column;
+  justify-content: center;
+  margin-bottom:2.5rem;
+  margin-top:1.5rem;
+  position:relative;
+
+  .l-section{
+    margin:0 !important;
+    width:100%;
+  }
+  .uw-term--header{
+    width:100%;
+  }
+  .uw-term--results{
+    width:100%;
+  }
+  .uw-term--filters{
+    width:100%;
+    .uw-input{
+      width:100%;
+    }
+  }
+
+  @include medium {
+    flex-direction: row;
+    gap: 1.5rem;
+    .uw-term--header{
+      //
+    }
+    .uw-term--results{
+      width: clamp(320px, 900px, calc(100vw - 333px));
+    }
+    .uw-term--filters{
+      margin: 0;
+      width: $sidebar-width;
+    }
+  }
 }
 
 .path-dashboard .layout__region {
diff --git a/source/_patterns/03-layouts/section/section.twig b/source/_patterns/03-layouts/section/section.twig
index 4a67a5a07272775412090dd0c24fee9561e0828c..2278544f325cfe6709c820742a48914b85a5e42d 100644
--- a/source/_patterns/03-layouts/section/section.twig
+++ b/source/_patterns/03-layouts/section/section.twig
@@ -1,4 +1,4 @@
-<section class="l-section">
+<section class="l-section {{ section_modifier_classes }}">
   {% if has_constrain %}
     <div class="l-constrain {{ constrain_modifier_classes }}">
   {% endif %}
diff --git a/source/_patterns/03-layouts/section/section.yml b/source/_patterns/03-layouts/section/section.yml
index b3f0342555d31de7076677cefc86c844d2b2fddd..e53a1a7502c7d85b98c7439fb7a459adaa7899d6 100644
--- a/source/_patterns/03-layouts/section/section.yml
+++ b/source/_patterns/03-layouts/section/section.yml
@@ -1,4 +1,5 @@
 ---
+section_modifier_classes: ''
 has_constrain: false
 constrain_modifier_classes: ''
 section_title_element: 'h2'
diff --git a/source/_patterns/05-templates/termpage.twig b/source/_patterns/05-templates/termpage.twig
new file mode 100644
index 0000000000000000000000000000000000000000..10412082a988df4816fdbd3adb90c4c891d9102f
--- /dev/null
+++ b/source/_patterns/05-templates/termpage.twig
@@ -0,0 +1,64 @@
+{%  if pattern_lab %}
+  {%  set faculty = faculty ? faculty : 'org-art' %}
+{% endif %}
+
+{% set termpage_title %}
+  {% include '@components/page-title/page-title.twig' with {
+  'page_title': termpage_title
+  } %}
+{% endset %}
+
+{% set termpage_results %}
+  {% include '@components/content-grid-list/content-grid-list.twig' with {
+    'modifier_classes': 'l-grid--1col'
+  } %}
+{% endset %}
+
+{% set termpage_filters %}
+  {% include '@components/filters/filters.twig' %}
+{% endset %}
+
+
+
+<div class="uw-site-container">
+  {% block header %}
+    {% include "@layouts/header/header.twig"%}
+  {% endblock %}
+
+  {% embed '@layouts/grid/grid.twig' with {
+    'modifier_classes': grid_modifier_classes
+  } %}
+    {% block content %}
+
+      {% include '@layouts/section/section.twig' with {
+        'section_modifier_classes':'layout uw-term--header',
+        'section_title': false,
+        'section_content': termpage_title,
+        'has_constrain' : true,
+        'constrain_modifier_classes': 'l-constrain--no-padding'
+      } %}
+
+      {% include '@layouts/section/section.twig' with {
+        'section_modifier_classes':'uw-term--results',
+        'section_title': false,
+        'section_content': termpage_results,
+        'has_constrain' : true,
+        'constrain_modifier_classes': 'l-constrain--no-padding'
+      } %}
+
+      {% include '@layouts/section/section.twig' with {
+        'section_modifier_classes':'uw-term--filters',
+        'section_title': false,
+        'section_content': termpage_filters,
+        'has_constrain' : false,
+        'constrain_modifier_classes': 'l-constrain--no-padding'
+      } %}
+    {% endblock %}
+  {% endembed %}
+  {% block footer %}
+    {% include "@layouts/footer/footer.twig" with {
+      'menu_name': footer_menu_name,
+      'items': footer_menu
+    }%}
+  {% endblock %}
+</div>
diff --git a/source/_patterns/05-templates/termpage.yml b/source/_patterns/05-templates/termpage.yml
new file mode 100644
index 0000000000000000000000000000000000000000..d9b6fb6bc1f20bcb9867305a81238378b8979034
--- /dev/null
+++ b/source/_patterns/05-templates/termpage.yml
@@ -0,0 +1,1316 @@
+---
+cookie:
+  text: '<h2>We use cookies on this site to enhance the user experience.</h2><p>Select "Accept all" to agree and continue. You consent to our cookies if you continue to use this website.</p>'
+termpage_title: 'News'
+termpage_image:
+termpage_content: |-
+  <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi quis mattis ipsum, non hendrerit justo. Pellentesque libero dui, varius ut ex quis, interdum aliquet est. Integer iaculis sapien libero, ut ullamcorper est tristique et. Vivamus orci nunc, commodo at vulputate gravida, tempus id nisi. Praesent feugiat elit at nunc dignissim consequat. Cras posuere venenatis augue, quis ultricies mauris sagittis quis. Proin blandit arcu est, ac pulvinar ante tristique non. Suspendisse eu maximus erat. Vestibulum hendrerit arcu id ex ullamcorper, id ultrices magna euismod. Maecenas id elit ultrices purus elementum sollicitudin. Sed id magna id metus pretium vulputate id a risus. Curabitur tellus quam, congue tristique rutrum in, sagittis vel nibh. Mauris aliquet purus vel faucibus faucibus. Nullam lacinia diam ante, nec consequat sem pulvinar non. Mauris et dolor quis metus cursus fermentum nec vitae risus.</p>
+  <p>Nam auctor laoreet ipsum, nec finibus tellus interdum vel. Nunc dui nisi, cursus ut tortor vel, porta porttitor quam. Curabitur tempor tellus a eros bibendum rhoncus. Quisque faucibus volutpat malesuada. Aliquam dapibus libero sem, et mollis libero rutrum eu. Interdum et malesuada fames ac ante ipsum primis in faucibus. Aliquam vel pharetra augue, sed feugiat est. Donec in velit sed libero sollicitudin eleifend. Nunc et erat mollis, placerat ex vitae, volutpat risus. Nam in enim quis nibh volutpat egestas nec a magna. Curabitur congue pretium arcu ac hendrerit. Sed iaculis tempor tellus, nec scelerisque diam ornare id. Aenean interdum accumsan tincidunt. Maecenas commodo lacinia nibh id iaculis.</p>
+filter_items:
+  -
+    classes: ''
+    form_item_wrapper: true
+    id: '1text'
+    name: ''
+    type: 'text'
+    placeholder: '1text'
+
+  -
+    classes: ''
+    form_item_wrapper: true
+    id: '2text'
+    name: ''
+    type: 'text'
+    placeholder: '2text'
+  -
+    classes: ''
+    form_item_wrapper: true
+    id: '3text'
+    name: ''
+    type: 'text'
+    placeholder: '3text'
+
+  -
+    classes: ''
+    form_item_wrapper: true
+    id: '4text'
+    name: ''
+    type: 'text'
+    placeholder: '4text'
+
+  -
+    classes: ''
+    form_item_wrapper: true
+    id: '5text'
+    name: ''
+    type: 'text'
+    placeholder: '5text'
+  -
+    classes: ''
+    form_item_wrapper: true
+    id: '6text'
+    name: ''
+    type: 'text'
+    placeholder: '6text'
+
+  -
+    classes: ''
+    form_item_wrapper: true
+    id: '7text'
+    name: ''
+    type: 'text'
+    placeholder: '7text'
+
+  -
+    classes: ''
+    form_item_wrapper: true
+    id: '8text'
+    name: ''
+    type: 'text'
+    placeholder: '8text'
+
+  -
+    classes: ''
+    form_item_wrapper: true
+    id: '9text'
+    name: ''
+    type: 'text'
+    placeholder: '9text'
+
+  -
+    classes: ''
+    form_item_wrapper: true
+    id: '10text'
+    name: ''
+    type: 'text'
+    placeholder: '10text'
+
+
+
+modifier_classes: ''
+grid_modifier_classes: 'uw-term--layout'
+flex_modifier_classes: 'uw-flex-grid'
+lists:
+  -
+    title: 'Blog Teaser title 1'
+    url: '#'
+    date:
+      - 'Friday, September 18, 2020'
+    author_name: 'Author Lastname'
+    author_link: '#'
+    tags:
+      - url: '#'
+        title: 'Tag 1'
+      - url: '#'
+        title: 'Tag 2'
+      - url: '#'
+        title: 'Tag 3'
+      - url: '#'
+        title: 'Tag 4'
+    sources:
+      - srcset: '../../../../source/images/president/president_xlarge.jpg'
+        media: 'all and (min-width: 63.19rem)'
+        type: 'image/jpeg'
+      - srcset: '../../../../source/images/president/president_large.jpg'
+        media: 'all and (min-width: 49.81rem)'
+        type: 'image/jpeg'
+      - srcset: '../../../../source/images/president/president_medium.jpg'
+        media: 'all and (min-width: 30rem)'
+        type: 'image/jpeg'
+      - srcset: '../../../../source/images/president/president_small.jpg'
+        media: 'all and (min-width: 25rem)'
+        type: 'image/jpeg'
+      - srcset: '../../../../source/images/president/president_xsmall.jpg'
+        media: 'all and (min-width: 15rem)'
+        type: 'image/jpeg'
+    img_element: '../../../../source/images/president/president_xlarge.jpg'
+    alt: 'Alternative text for blog teaser photo'
+    read_more: false
+    show_hover: true
+    content: |-
+      <p>This is the summary, which can contain <abbr title="Hyper Text Markup Language">HTML</abbr> markup. It should be short summary of the content and contain a few lines of useful descriptive text .</p>
+  -
+    title: 'Blog Teaser title 2'
+    url: '#'
+    date:
+      - 'Friday, September 18, 2020'
+    author_name: 'Author Lastname'
+    author_link: '#'
+    tags:
+      - url: '#'
+        title: 'Tag 1'
+      - url: '#'
+        title: 'Tag 2'
+      - url: '#'
+        title: 'Tag 3'
+      - url: '#'
+        title: 'Tag 4'
+    sources:
+      - srcset: '../../../../source/images/president/president_xlarge.jpg'
+        media: 'all and (min-width: 63.19rem)'
+        type: 'image/jpeg'
+      - srcset: '../../../../source/images/president/president_large.jpg'
+        media: 'all and (min-width: 49.81rem)'
+        type: 'image/jpeg'
+      - srcset: '../../../../source/images/president/president_medium.jpg'
+        media: 'all and (min-width: 30rem)'
+        type: 'image/jpeg'
+      - srcset: '../../../../source/images/president/president_small.jpg'
+        media: 'all and (min-width: 25rem)'
+        type: 'image/jpeg'
+      - srcset: '../../../../source/images/president/president_xsmall.jpg'
+        media: 'all and (min-width: 15rem)'
+        type: 'image/jpeg'
+    img_element: '../../../../source/images/president/president_xlarge.jpg'
+    alt: 'Alternative text for blog teaser photo'
+    read_more: false
+    show_hover: true
+    content: |-
+      <p>This is the summary, which can contain <abbr title="Hyper Text Markup Language">HTML</abbr> markup. It should be short summary of the content and contain a few lines of useful descriptive text .</p>
+  -
+    title: 'Blog Teaser title 3'
+    url: '#'
+    date:
+      - 'Friday, September 18, 2020'
+    author_name: 'Author Lastname'
+    author_link: '#'
+    tags:
+      - url: '#'
+        title: 'Tag 1'
+      - url: '#'
+        title: 'Tag 2'
+      - url: '#'
+        title: 'Tag 3'
+      - url: '#'
+        title: 'Tag 4'
+    sources:
+      - srcset: '../../../../source/images/president/president_xlarge.jpg'
+        media: 'all and (min-width: 63.19rem)'
+        type: 'image/jpeg'
+      - srcset: '../../../../source/images/president/president_large.jpg'
+        media: 'all and (min-width: 49.81rem)'
+        type: 'image/jpeg'
+      - srcset: '../../../../source/images/president/president_medium.jpg'
+        media: 'all and (min-width: 30rem)'
+        type: 'image/jpeg'
+      - srcset: '../../../../source/images/president/president_small.jpg'
+        media: 'all and (min-width: 25rem)'
+        type: 'image/jpeg'
+      - srcset: '../../../../source/images/president/president_xsmall.jpg'
+        media: 'all and (min-width: 15rem)'
+        type: 'image/jpeg'
+    img_element: '../../../../source/images/president/president_xlarge.jpg'
+    alt: 'Alternative text for blog teaser photo'
+    read_more: false
+    show_hover: true
+    content: |-
+      <p>This is the summary, which can contain <abbr title="Hyper Text Markup Language">HTML</abbr> markup. It should be short summary of the content and contain a few lines of useful descriptive text .</p>
+  -
+    title: 'News Teaser title 1'
+    url: '#'
+    date:
+      - 'Sep. 18, 2020'
+    sources:
+      - srcset: '../../../../source/images/president/president_xlarge.jpg'
+        media: 'all and (min-width: 63.19rem)'
+        type: 'image/jpeg'
+      - srcset: '../../../../source/images/president/president_large.jpg'
+        media: 'all and (min-width: 49.81rem)'
+        type: 'image/jpeg'
+      - srcset: '../../../../source/images/president/president_medium.jpg'
+        media: 'all and (min-width: 30rem)'
+        type: 'image/jpeg'
+      - srcset: '../../../../source/images/president/president_small.jpg'
+        media: 'all and (min-width: 25rem)'
+        type: 'image/jpeg'
+      - srcset: '../../../../source/images/president/president_xsmall.jpg'
+        media: 'all and (min-width: 15rem)'
+        type: 'image/jpeg'
+    img_element: '../../../../source/images/president/president_xlarge.jpg'
+    alt: 'Alternative text for blog teaser photo'
+    read_more: false
+    show_hover: true
+    content: |-
+      <p>This is the summary, which can contain <abbr title="Hyper Text Markup Language">HTML</abbr> markup. It should be short summary of the content and contain a few lines of useful descriptive text .</p>
+  -
+    title: 'News Teaser title 2'
+    url: '#'
+    date:
+      - 'Sep. 18, 2020'
+    sources:
+      - srcset: '../../../../source/images/president/president_xlarge.jpg'
+        media: 'all and (min-width: 63.19rem)'
+        type: 'image/jpeg'
+      - srcset: '../../../../source/images/president/president_large.jpg'
+        media: 'all and (min-width: 49.81rem)'
+        type: 'image/jpeg'
+      - srcset: '../../../../source/images/president/president_medium.jpg'
+        media: 'all and (min-width: 30rem)'
+        type: 'image/jpeg'
+      - srcset: '../../../../source/images/president/president_small.jpg'
+        media: 'all and (min-width: 25rem)'
+        type: 'image/jpeg'
+      - srcset: '../../../../source/images/president/president_xsmall.jpg'
+        media: 'all and (min-width: 15rem)'
+        type: 'image/jpeg'
+    img_element: '../../../../source/images/president/president_xlarge.jpg'
+    alt: 'Alternative text for blog teaser photo'
+    read_more: false
+    show_hover: true
+    content: |-
+      <p>This is the summary, which can contain <abbr title="Hyper Text Markup Language">HTML</abbr> markup. It should be short summary of the content and contain a few lines of useful descriptive text .</p>
+  -
+    title: 'News Teaser title 3'
+    url: '#'
+    date:
+      - 'Sep. 18, 2020'
+    sources:
+      - srcset: '../../../../source/images/president/president_xlarge.jpg'
+        media: 'all and (min-width: 63.19rem)'
+        type: 'image/jpeg'
+      - srcset: '../../../../source/images/president/president_large.jpg'
+        media: 'all and (min-width: 49.81rem)'
+        type: 'image/jpeg'
+      - srcset: '../../../../source/images/president/president_medium.jpg'
+        media: 'all and (min-width: 30rem)'
+        type: 'image/jpeg'
+      - srcset: '../../../../source/images/president/president_small.jpg'
+        media: 'all and (min-width: 25rem)'
+        type: 'image/jpeg'
+      - srcset: '../../../../source/images/president/president_xsmall.jpg'
+        media: 'all and (min-width: 15rem)'
+        type: 'image/jpeg'
+    img_element: '../../../../source/images/president/president_xlarge.jpg'
+    alt: 'Alternative text for blog teaser photo'
+    read_more: false
+    show_hover: true
+    content: |-
+      <p>This is the summary, which can contain <abbr title="Hyper Text Markup Language">HTML</abbr> markup. It should be short summary of the content and contain a few lines of useful descriptive text .</p>
+  -
+    title: 'Event Teaser title 1'
+    url: '#'
+    date:
+      -  'Friday, September 18, 2020 2:20- 4:20 PM  EDT'
+    sources:
+      - srcset: '../../../../source/images/president/president_xlarge.jpg'
+        media: 'all and (min-width: 63.19rem)'
+        type: 'image/jpeg'
+      - srcset: '../../../../source/images/president/president_large.jpg'
+        media: 'all and (min-width: 49.81rem)'
+        type: 'image/jpeg'
+      - srcset: '../../../../source/images/president/president_medium.jpg'
+        media: 'all and (min-width: 30rem)'
+        type: 'image/jpeg'
+      - srcset: '../../../../source/images/president/president_small.jpg'
+        media: 'all and (min-width: 25rem)'
+        type: 'image/jpeg'
+      - srcset: '../../../../source/images/president/president_xsmall.jpg'
+        media: 'all and (min-width: 15rem)'
+        type: 'image/jpeg'
+    img_element: '../../../../source/images/president/president_xlarge.jpg'
+    alt: 'Alternative text for blog teaser photo'
+    read_more: false
+    show_hover: true
+    content: |-
+      <p>This is the summary, which can contain <abbr title="Hyper Text Markup Language">HTML</abbr> markup. It should be short summary of the content and contain a few lines of useful descriptive text .</p>
+  -
+    title: 'Event Teaser title 2'
+    url: '#'
+    date:
+      -  'Friday, September 18, 2020 2:20- 4:20 PM  EDT'
+    sources:
+      - srcset: '../../../../source/images/president/president_xlarge.jpg'
+        media: 'all and (min-width: 63.19rem)'
+        type: 'image/jpeg'
+      - srcset: '../../../../source/images/president/president_large.jpg'
+        media: 'all and (min-width: 49.81rem)'
+        type: 'image/jpeg'
+      - srcset: '../../../../source/images/president/president_medium.jpg'
+        media: 'all and (min-width: 30rem)'
+        type: 'image/jpeg'
+      - srcset: '../../../../source/images/president/president_small.jpg'
+        media: 'all and (min-width: 25rem)'
+        type: 'image/jpeg'
+      - srcset: '../../../../source/images/president/president_xsmall.jpg'
+        media: 'all and (min-width: 15rem)'
+        type: 'image/jpeg'
+    img_element: '../../../../source/images/president/president_xlarge.jpg'
+    alt: 'Alternative text for blog teaser photo'
+    content: |-
+      <p>This is the summary, which can contain <abbr title="Hyper Text Markup Language">HTML</abbr> markup. It should be short summary of the content and contain a few lines of useful descriptive text .</p>
+  -
+    title: 'Event Teaser title 3'
+    url: '#'
+    date:
+      -  'Friday, September 18, 2020 2:20- 4:20 PM  EDT'
+    sources:
+      - srcset: '../../../../source/images/president/president_xlarge.jpg'
+        media: 'all and (min-width: 63.19rem)'
+        type: 'image/jpeg'
+      - srcset: '../../../../source/images/president/president_large.jpg'
+        media: 'all and (min-width: 49.81rem)'
+        type: 'image/jpeg'
+      - srcset: '../../../../source/images/president/president_medium.jpg'
+        media: 'all and (min-width: 30rem)'
+        type: 'image/jpeg'
+      - srcset: '../../../../source/images/president/president_small.jpg'
+        media: 'all and (min-width: 25rem)'
+        type: 'image/jpeg'
+      - srcset: '../../../../source/images/president/president_xsmall.jpg'
+        media: 'all and (min-width: 15rem)'
+        type: 'image/jpeg'
+    img_element: '../../../../source/images/president/president_xlarge.jpg'
+    alt: 'Alternative text for blog teaser photo'
+    read_more: false
+    show_hover: true
+    content: |-
+      <p>This is the summary, which can contain <abbr title="Hyper Text Markup Language">HTML</abbr> markup. It should be short summary of the content and contain a few lines of useful descriptive text .</p>
+site_name: 'Psychology'
+is_demo_site_container: true
+is_demo_footer: true
+header_modifier_classes: 'header'
+menu_name: 'horizontal'
+header_items:
+  - title: 'Jump To'
+    url: 'Parent'
+    original_link:
+      options:
+        attributes:
+          class: ''
+    in_active_trail: false
+    submenu:
+      - title: 'Admissions'
+        url: 'https://uwaterloo.ca/admissions/'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        in_active_trail: false
+      - title: 'About Waterloo'
+        url: 'https://uwaterloo.ca/about/'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        in_active_trail: false
+      - title: 'Faculties & Academics'
+        url: 'https://uwaterloo.ca/faculties-academics/'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        in_active_trail: false
+      - title: 'Offices & Services'
+        url: 'https://uwaterloo.ca/offices-services/'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        in_active_trail: false
+      - title: 'Support Waterloo'
+        url: 'https://uwaterloo.ca/support/'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        in_active_trail: false
+classes:
+  - 'uw-header'
+  - 'default'
+footer_menu_name: 'uw-footer'
+footer_menu:
+  - title: 'Contact Waterloo'
+    url: 'https://uwaterloo.ca/about/contact-us'
+    original_link:
+      options:
+        attributes:
+          class: ''
+    in_active_trail: false
+  - title: 'Maps & Directions'
+    url: 'https://uwaterloo.ca/map/'
+    original_link:
+      options:
+        attributes:
+          class: ''
+    in_active_trail: false
+  - title: 'Watsafe'
+    url: 'https://uwaterloo.ca/watsafe/'
+    original_link:
+      options:
+        attributes:
+          class: ''
+    in_active_trail: false
+  - title: 'Accessibility'
+    url: 'https://uwaterloo.ca/human-resources/accessibility'
+    original_link:
+      options:
+        attributes:
+          class: ''
+    in_active_trail: false
+  - title: 'Privacy'
+    url: 'https://uwaterloo.ca/privacy/'
+    original_link:
+      options:
+        attributes:
+          class: ''
+    in_active_trail: false
+  - title: 'Copyright'
+    url: 'https://uwaterloo.ca/copyright'
+    original_link:
+      options:
+        attributes:
+          class: ''
+    in_active_trail: false
+  - title: 'News'
+    url: 'https://uwaterloo.ca/news/'
+    original_link:
+      options:
+        attributes:
+          class: ''
+    in_active_trail: false
+  - title: 'Careers'
+    url: 'https://uwaterloo.ca/careers/'
+    original_link:
+      options:
+        attributes:
+          class: ''
+    in_active_trail: false
+  - title: 'Careers'
+    url: 'https://uwaterloo.ca/about/contact-us/contact-form'
+    original_link:
+      options:
+        attributes:
+          class: ''
+    in_active_trail: false
+social_media:
+  menu_tree:
+    - text: "Facebook"
+      url: "https://www.facebook.com/university.waterloo"
+    - text: "Twitter"
+      url: "https://twitter.com/uWaterloo"
+    - text: "YouTube"
+      url: "https://www.youtube.com/user/uwaterloo"
+    - text: "Instagram"
+      url: "https://www.instagram.com/uofwaterloo/"
+    - text: "LinkedIn"
+      url: "https://www.linkedin.com/edu/school?id=10875"
+social_media_placement: "global-site-footer"
+nav_items:
+  - text: 'About Psychology'
+    url: '#'
+    original_link:
+      options:
+        attributes:
+          class: ''
+    active_trail: false
+    menu_items_count: 2
+    submenu:
+      - text: 'Our mission & vision'
+        url: '#'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        active_trail: false
+  - text: 'Our People'
+    url: '#'
+    original_link:
+      options:
+        attributes:
+          class: ''
+    active_trail: false
+    menu_items_count: 0
+  - text: 'Research'
+    url: '#'
+    original_link:
+      options:
+        attributes:
+          class: ''
+    active_trail: false
+    menu_items_count: 10
+    submenu:
+      - text: 'Research areas'
+        url: '#'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        active_trail: false
+      - text: 'Research Chair and Awards'
+        url: '#'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        active_trail: false
+        submenu:
+          - text: 'Clinical'
+            url: '#'
+            original_link:
+              options:
+                attributes:
+                  class: ''
+            active_trail: false
+          - text: 'Cognitive'
+            url: '#'
+            original_link:
+              options:
+                attributes:
+                  class: ''
+            active_trail: false
+          - text: 'Cognitive Neuroscience'
+            url: '#'
+            original_link:
+              options:
+                attributes:
+                  class: ''
+            active_trail: false
+          - text: 'Developmental'
+            url: '#'
+            original_link:
+              options:
+                attributes:
+                  class: ''
+            active_trail: false
+          - text: 'Industrial-Organizational'
+            url: '#'
+            original_link:
+              options:
+                attributtes:
+                  class: ''
+            active-trial: false
+            submenu:
+              - text: 'Academic Program for Graduate Study in Industrial-Organizational Psychology'
+                url: '#'
+                original_link:
+                  options:
+                    attributes:
+                      class: ''
+                active_trail: false
+          - text: 'Social Psychology'
+            url: '#'
+            original_link:
+              options:
+                attributtes:
+                  class: ''
+            active-trial: false
+  - text: 'Teaching excellence'
+    url: '#'
+    original_link:
+      options:
+        attributes:
+          class: ''
+    active_trail: false
+    menu_items_count: 2
+    submenu:
+      - text: 'Experiential learning'
+        url: '#'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        active_trail: false
+  - text: 'News'
+    url: '#'
+    original_link:
+      options:
+        attributes:
+          class: ''
+    active_trail: false
+    menu_items_count: 0
+  - text: 'Events'
+    url: '#'
+    original_link:
+      options:
+        attributes:
+          class: ''
+    active_trail: false
+    menu_items_count: 0
+  - text: 'Centre for Mental Health Research and Treatment'
+    url: '#'
+    original_link:
+      options:
+        attributes:
+          class: ''
+    active_trail: false
+    menu_items_count: 0
+  - text: 'Early Childhood Education Centre'
+    url: '#'
+    original_link:
+      options:
+        attributes:
+          class: ''
+    active_trail: false
+    menu_items_count: 8
+    submenu:
+      - text: 'Programs offered | Fees'
+        url: '#'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        active_trail: false
+      - text: 'FAQs'
+        url: '#'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        active_trail: false
+      - text: 'Enrollment Process | Registration'
+        url: '#'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        active_trail: false
+      - text: 'Research and academic programs'
+        url: '#'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        active_trail: false
+      - text: 'Volunteer program'
+        url: '#'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        active_trail: false
+      - text: 'Contact us'
+        url: '#'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        active_trail: false
+      - text: 'Resources and links'
+        url: '#'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        active_trail: false
+  - text: 'Celebrating the Class of 2020'
+    url: '#'
+    original_link:
+      options:
+        attributes:
+          class: ''
+    active_trail: false
+    menu_items_count: 3
+    submenu:
+      - text: 'Convocation Award Winners 2020'
+        url: '#'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        active_trail: false
+      - text: 'Student Memories 2020'
+        url: '#'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        active_trail: false
+  - text: 'Community Partners'
+    url: '#'
+    original_link:
+      options:
+        attributes:
+          class: ''
+    active_trail: false
+    menu_items_count: 0
+  - text: 'Department Profiles Sherman Kwok'
+    url: '#'
+    original_link:
+      options:
+        attributes:
+          class: ''
+    active_trail: false
+    menu_items_count: 0
+secondary_modifier_classes: 'secondary'
+secondary_items:
+  - text: 'Undergraduate students '
+    url: '#Parent'
+    original_link:
+      options:
+        attributes:
+          class: ''
+    active_trail: true
+    active: true
+    menu_items_count: 39
+    submenu:
+      - text: 'Degree Options and Specializations'
+        url: '#'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        active_trail: false
+      - text: 'How to become a Psychology Student'
+        url: '#'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        active_trail: false
+        submenu:
+          - text: 'Prospective student'
+            url: '#'
+            original_link:
+              options:
+                attributes:
+                  class: ''
+            active_trail: false
+      - text: 'Courses'
+        url: '#'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        active_trail: false
+        submenu:
+          - text: 'Future course offerings'
+            url: '#'
+            original_link:
+              options:
+                attributes:
+                  class: ''
+            active_trail: false
+          - text: 'Courses requiring an application'
+            url: '#'
+            original_link:
+              options:
+                attributes:
+                  class: ''
+            active_trail: false
+          - text: 'Honours Thesis (Psych 499)'
+            url: '#'
+            original_link:
+              options:
+                attributes:
+                  class: ''
+            active_trail: false
+            submenu:
+              - text: 'Conference opportunities '
+                url: '#'
+                original_link:
+                  options:
+                    attributes:
+                      class: ''
+                active_trail: false
+                submenu:
+                  - text: 'Annual Ontario Psychology Undergraduate Thesis Conference'
+                    url: '#'
+                    original_link:
+                      options:
+                        attributes:
+                          class: ''
+                    active_trail: false
+              - text: 'Publishing opportunities'
+                url: '#'
+                original_link:
+                  options:
+                    attributes:
+                      class: ''
+                active_trail: false
+          - text: 'Course overrides'
+            url: '#'
+            original_link:
+              options:
+                attributes:
+                  class: ''
+            active_trail: false
+          - text: 'Special Topics and Honours Seminars'
+            url: '#'
+            original_link:
+              options:
+                attributes:
+                  class: ''
+            active_trail: false
+          - text: 'Syllabus Archive'
+            url: '#'
+            original_link:
+              options:
+                attributes:
+                  class: ''
+            active_trail: false
+      - text: 'Experiential Learning'
+        url: '#'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        active_trail: false
+        submenu:
+          - text: 'Psychology co-op'
+            url: '#'
+            original_link:
+              options:
+                attributes:
+                  class: ''
+            active_trail: false
+          - text: 'Research Assistant (RA) positions'
+            url: '#'
+            original_link:
+              options:
+                attributes:
+              class: ''
+            active_trail: false
+      - text: 'Student success'
+        url: '#'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        active_trail: false
+        submenu:
+          - text: 'Academic standing'
+            url: '#'
+            original_link:
+              options:
+                attributes:
+                  class: ''
+            active_trail: false
+      - text: 'Policies'
+        url: '#'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        active_trail: false
+        submenu:
+          - text: 'University policies'
+            url: '#'
+            original_link:
+              options:
+                attributes:
+                  class: ''
+            active_trail: false
+          - text: 'Psychology Department policies'
+            url: '#'
+            original_link:
+              options:
+                attributes:
+                  class: ''
+            active_trail: false
+      - text: 'Awards '
+        url: '#'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        active_trail: false
+        submenu:
+          - text: 'Convocation and thesis awards'
+            url: '#'
+            original_link:
+              options:
+                attributes:
+                  class: ''
+            active_trail: false
+          - text: 'Psychology Memorial Awards'
+            url: '#'
+            original_link:
+              options:
+                attributes:
+                  class: ''
+            active_trail: false
+          - text: 'Other research awards'
+            url: '#'
+            original_link:
+              options:
+                attributes:
+                  class: ''
+            active_trail: false
+          - text: 'Distinguished Teacher Awards'
+            url: '#'
+            original_link:
+              options:
+                attributes:
+                  class: ''
+            active_trail: false
+      - text: 'Psychology Undergraduate Society '
+        url: '#'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        active_trail: false
+      - text: 'About to graduate'
+        url: '#'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        active_trail: false
+      - text: 'FAQs'
+        url: '#'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        active_trail: false
+      - text: 'Career Options'
+        url: '#'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        active_trail: false
+        submenu:
+          - text: 'Career advising'
+            url: '#'
+            original_link:
+              options:
+                attributes:
+                  class: ''
+            active_trail: false
+          - text: 'College programs'
+            url: '#'
+            original_link:
+              options:
+                attributes:
+                  class: ''
+            active_trail: false
+          - text: 'Employment after Bachelors'
+            url: '#'
+            original_link:
+              options:
+                attributes:
+                  class: ''
+            active_trail: false
+          - text: 'Employment after Masters or PhD'
+            url: '#'
+            original_link:
+              options:
+                attributes:
+                  class: ''
+            active_trail: false
+          - text: 'Graduate studies in Psychology'
+            url: '#'
+            original_link:
+              options:
+                attributes:
+                  class: ''
+            active_trail: false
+            submenu:
+              - text: 'Letters of recommendation'
+                url: '#'
+                original_link:
+                  options:
+                    attributes:
+                      class: ''
+                active_trail: false
+          - text: 'Other programs'
+            url: '#'
+            original_link:
+              options:
+                attributes:
+                  class: ''
+            active_trail: false
+      - text: 'Who can I ask?'
+        url: '#'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        active_trail: false
+  - text: 'Human Resources Management program '
+    url: '#'
+    original_link:
+      options:
+        attributes:
+          class: ''
+    active_trail: false
+    menu_items_count: 10
+    submenu:
+      - text: 'Meet your lecturers'
+        url: '#'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        active_trail: false
+      - text: 'Minor & Diploma'
+        url: '#'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        active_trail: false
+      - text: 'Courses'
+        url: '#'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        active_trail: false
+      - text: 'Meet Our Students'
+        url: '#'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        active_trail: true
+        active: true
+      - text: 'Student success'
+        url: '#'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        active_trail: false
+        submenu:
+          - text: 'Get involved'
+            url: '#'
+            original_link:
+              options:
+                attributes:
+                  class: ''
+            active_trail: false
+      - text: 'News'
+        url: '#'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        active_trail: false
+      - text: 'Alumni | Friends'
+        url: '#'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        active_trail: false
+      - text: 'HRM Opportunities'
+        url: '#'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        active_trail: false
+  - text: 'Graduate students'
+    url: '#'
+    original_link:
+      options:
+        attributes:
+          class: ''
+    active_trail: false
+    menu_items_count: 19
+    submenu:
+      - text: 'Programs'
+        url: '#'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        active_trail: false
+      - text: 'Minimum admission requirements'
+        url: '#'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        active_trail: false
+      - text: 'Application procedures'
+        url: '#'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        active_trail: false
+      - text: 'Degree requirements'
+        url: '#'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        active_trail: false
+        submenu:
+          - text: 'Submission of the Masters Thesis'
+            url: '#'
+            original_link:
+              options:
+                attributes:
+                  class: ''
+            active_trail: false
+          - text: 'Submission of the Masters Research Paper (MASc students)'
+            url: '#'
+            original_link:
+              options:
+                attributes:
+                  class: ''
+            active_trail: false
+          - text: 'Forming a PhD Committee'
+            url: '#'
+            original_link:
+              options:
+                attributes:
+                  class: ''
+            active_trail: false
+          - text: 'Guideline for PhD Thesis Defense'
+            url: '#'
+            original_link:
+              options:
+                attributes:
+                  class: ''
+            active_trail: false
+          - text: 'Submission of the PhD thesis following the defense'
+            url: '#'
+            original_link:
+              options:
+                attributes:
+                  class: ''
+            active_trail: false
+      - text: 'Forms'
+        url: '#'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        active_trail: false
+      - text: 'Funding & Awards'
+        url: '#'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        active_trail: false
+      - text: 'Careers of Alumni'
+        url: '#'
+        original_link:
+        options:
+          attributes:
+            class: ''
+        active_trail: false
+      - text: 'GASP (Graduate Association of Students in Psychology)'
+        url: '#'
+        original_link:
+        options:
+          attributes:
+            class: ''
+        active_trail: false
+      - text: 'Graduate courses'
+        url: '#'
+        original_link:
+        options:
+          attributes:
+            class: ''
+        active_trail: false
+      - text: 'Orientation guide'
+        url: '#'
+        original_link:
+        options:
+          attributes:
+            class: ''
+        active_trail: false
+      - text: 'Policies and procedures'
+        url: '#'
+        original_link:
+        options:
+          attributes:
+            class: ''
+        active_trail: false
+      - text: 'Showcasing graduate student research'
+        url: '#'
+        original_link:
+        options:
+          attributes:
+            class: ''
+        active_trail: false
+      - text: 'Teaching assistantships'
+        url: '#'
+        original_link:
+        options:
+          attributes:
+            class: ''
+        active_trail: false
+  - text: 'Faculty & Staff'
+    url: '#'
+    original_link:
+    options:
+      attributes:
+        class: ''
+    active_trail: false
+    menu_items_count: 0
+  - text: 'Alumni & Friends'
+    url: '#'
+    original_link:
+    options:
+      attributes:
+        class: ''
+    active_trail: false
+    menu_items_count: 4
+    submenu:
+      - text: 'Share your story'
+        url: '#'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        active_trail: false
+      - text: 'Profiles & Achievements'
+        url: '#'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        active_trail: false
+      - text: 'Make a gift'
+        url: '#'
+        original_link:
+          options:
+            attributes:
+              class: ''
+        active_trail: false
+  - text: 'Positions available'
+    url: '#'
+    original_link:
+    options:
+      attributes:
+        class: ''
+    active_trail: false
+    menu_items_count: 0
+form_action: 'https://uwaterloo.ca/search'
+form_autocomplete: 'off'
+form_classes: 'uw-search--form'
+form_id: '12345'
+form_method: 'get'
+form_target: ''
+form_accept-charset : 'UTF-8'
+form_role: 'search'
+form_items:
+  - classes: 'uw-input--search'
+    id: '1text'
+    name: 'search-input'
+    type: 'text'
+    placeholder: 'Search'
+    label:
+      text: 'Search'
+      class: 'uw-search--label hidden'
+  - is_button_tag: true
+    form_item_wrapper: false
+    is_demo: false
+    is_disabled: false
+    type: ''
+    classes: button_modifier_classes
+    modifier_classes: button_modifier_classes
+    formaction: ''
+    form: 'uw-search'
+    name: ''
+    formenctype: ''
+    value: 'submit'
+    formmethod: ''
+    formtarget: ''
+    text: ''
+    btnclick: |
+    #      alert('Hello World!');
+#    - classes: 'uw-input--submit'
+#      id: 'submit'
+#      name: 'Search'
+#      type: 'submit'
+