We can make this file beautiful and searchable if this error is corrected: It looks like row 2 should actually have 1 column, instead of 3 in line 1.
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
| App Screenshots | |
| Notch (iPohone X), 414x896 (@3x), 1242x2688 |
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
| {% assign event-sort = site.events | sort: "event-date" %} | |
| {% for event in event-sort %} | |
| {% assign today = "today" | date: "%s"%} | |
| {% assign event-date = event.event-date | date: "%s" %} | |
| {% if today <= event-date %} | |
| {% assign day = event.event-date | date: "%a" %} | |
| {% assign month = event.event-date | date: "%b" %} | |
| {% assign day-num = event.event-date | date: "%d" %} | |
| {% assign start-time = event.event-date | date: "%I%p" %} |
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
| <!-- Here's a great article on setting up zapier. I added a few lines in the ajax so you don't have to redirect the user --> | |
| <!-- https://www.harrycresswell.com/articles/form-data-with-zapier/ --> | |
| <form id="myForm"> | |
| <input id="form-name" type="text" name="Name" placeholder="Name" required> | |
| <input id="form-email" type="email" name="Email" placeholder="Email" required> | |
| <textarea id="form-message" name="Message" cols="30" rows="6" placeholder="Message" required></textarea> | |
| <!-- CONFIG --> | |
| <input class="hidden" type="text" name="_gotcha"> |
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
| {% for posts in site.posts %} | |
| {% assign loopindex = forloop.index | modulo: 6 %} | |
| {% if loopindex == 1 %} | |
| <div> {{ forloop.index }} | |
| {% elsif loopindex == 2 %} | |
| {{ forloop.index }} | |
| {% elsif loopindex == 3 %} | |
| {{ forloop.index }} </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
| <title>{{ page.title }} - {{site.title}}</title> | |
| <meta property="og:title" content="{{ page.title }}" /> | |
| <meta name="description" content="{{ page.excerpt | strip_html }}"/> | |
| <meta property="og:description" content="{{ page.excerpt | strip_html }}"/> | |
| <link rel="canonical" href="{{site.url}}{{page.url}}" /> | |
| <meta property="og:url" content="{{site.url}}{{page.url}}" /> | |
| <meta property="og:site_name" content="{{site.title}}" /> | |
| {% if page.og-image %} | |
| <meta property="og:image" content="{{ site.url }}{{ page.og-image }}" /> | |
| {% else %} |
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
| --- | |
| title: Foo | |
| date: 2016-12-17 11:09:00 -05:00 | |
| color: "#A96BE3" | |
| --- | |