Fix liquid error
This commit is contained in:
parent
a5af5d936c
commit
d9c8e5e7d2
|
@ -18,8 +18,10 @@ type: website
|
||||||
Hey! I'm <a href='https://ricostacruz.com'>@rstacruz</a> and this is a
|
Hey! I'm <a href='https://ricostacruz.com'>@rstacruz</a> and this is a
|
||||||
modest collection of cheatsheets I've written.
|
modest collection of cheatsheets I've written.
|
||||||
</p>
|
</p>
|
||||||
<form data-js-search-form class='search-box search'>
|
<form data-js-search-form class='search'>
|
||||||
|
<label class='search-box'>
|
||||||
<input type='text' placeholder='Search...' autofocus data-js-search-input>
|
<input type='text' placeholder='Search...' autofocus data-js-search-input>
|
||||||
|
</label>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -35,11 +37,13 @@ type: website
|
||||||
</h2>
|
</h2>
|
||||||
|
|
||||||
{% for page in site.pages %}
|
{% for page in site.pages %}
|
||||||
|
{% if page.updated %}
|
||||||
{% if page.updated >= site.last_updated %}
|
{% if page.updated >= site.last_updated %}
|
||||||
{% unless page.tags contains 'Featured' %}
|
{% unless page.tags contains 'Featured' %}
|
||||||
{% include 2017/pages-list-item.html page=page class='article item' %}
|
{% include 2017/pages-list-item.html page=page class='article item' %}
|
||||||
{% endunless %}
|
{% endunless %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
{% for category in site.category_names %}
|
{% for category in site.category_names %}
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: Licenses
|
title: Licenses
|
||||||
section: Development
|
section: Development
|
||||||
layout: 2017/sheet
|
layout: 2017/sheet
|
||||||
updated: 2017/08
|
updated: 201708
|
||||||
---
|
---
|
||||||
|
|
||||||
## Licenses
|
## Licenses
|
||||||
|
|
Loading…
Reference in New Issue