This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {%- capture blog_handles -%} | |
| {%- for link in linklists.blog-navigation.links -%} | |
| {%- if link.type == 'blog_link' -%}{{ link.object.handle }}|{%- endif -%} | |
| {%- endfor -%} | |
| {%- endcapture -%} | |
| {%- assign customArticleList = false -%} | |
| {%- assign blog_handles_array = blog_handles | split:'|' -%} | |
| {%- for blog_handle in blog_handles_array -%} | |
| {% if customArticleList == blank %} | |
| {% assign customArticleList = blogs[blog_handle].articles %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <ul class="pagination__inner relative align-l mv1 pl0 f fw aic"> | |
| {% if current_page > 1 %} | |
| {% assign previous_page = current_page | minus:1 %} | |
| <li class="pagination__arrow pagination__arrow--previous mr05 inline-block"> | |
| <a href="{{ page.url }}?page={{ previous_page }}" class="inline-block relative" title="Previous">Previous</a> | |
| </li> | |
| {% endif %} | |
| {% for i in (1..total_pages) %} | |
| <li class="pagination__page mh025 inline-block{% if current_page == i %} is-active{% endif %}"> | |
| <a href="{{ page.url }}{% if i != 1 %}?page={{ i }}{% endif %}" class="medium inline-block align-c" title="">{{ i }}</a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*-- Tweezer --*/ | |
| class Tweezer { | |
| constructor (opts = {}) { | |
| this.duration = opts.duration || 1000 | |
| this.ease = opts.easing || this._defaultEase | |
| this.start = opts.start | |
| this.end = opts.end | |
| this.frame = null | |
| this.next = null | |
| this.isRunning = false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <section class="intro"> | |
| <!-- Header from module section-header.html --> | |
| <div class="section-header"> | |
| <h2 class="section-header__headline">Headline example</h2> | |
| <div class="section-header__description">This is a description.</div> | |
| </div> | |
| <!-- CTA Block from cta-blocks.html --> | |
| <div class="cta-blocks"> | |
| <div class="cta-blocks__list"> | |
| <!-- CTA Block single item from cta-block.html --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <section class="post-list"> | |
| <div class="post-list-header"> | |
| <h2>Latest Blog Posts</h2> | |
| </div> | |
| <div class="post-list-grid"> | |
| <article class="post-item"> | |
| <h3 class="post-title"><a href="/demo-1.html">CELERIAC AND APPLE SOUP</a></h3> | |
| <div class="post-intro"></div> | |
| </article> | |
| <article class="post-item"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <section class="intro-grid"> | |
| <!-- Header --> | |
| <header class="intro-header"> | |
| <h2 class="headline">PROGRAMS</h2> | |
| <div class="description">We offer a wide variety of public programs throughout the year.</div> | |
| </header> | |
| <div class="intro-grid-list"></div> | |
| </section> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <section class="intro"> | |
| <h2 class="headline">OUR TOURS</h2> | |
| <div class="list"> | |
| <div class="card"> | |
| <h3 class="title">WINTER FARM TOUR</h3> | |
| <div class="card-description">We will share with you our favorite places on the property while discussing the ways.</div> | |
| </div> | |
| <div class="card"> | |
| <h3 class="title">COLD-WEATHER WEEKENDS</h3> | |
| <div class="card-description">We're a four-season farm! During the cold-weather months there is still much to see.</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <section class="example"> | |
| <h2 class="heading">Heading</h2> | |
| <p class="description">This is a description.</p> | |
| </section> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script src="https://use.typekit.net/xxxxxxx.js"></script> | |
| <script> | |
| try { | |
| Typekit.load({ | |
| loading: function() { | |
| // JavaScript to execute when fonts start loading | |
| }, | |
| active: function() { | |
| // JavaScript to execute when fonts become active | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .wf-loading { | |
| body > .loader { | |
| visibility: visible; | |
| opacity:1; | |
| } | |
| } | |
| .wf-active, .wf-inactive { | |
| body > .loader { | |
| visibility: hidden; | |
| opacity:0; |