-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4dedfea
commit dff8c1e
Showing
30 changed files
with
139 additions
and
4,229 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
--- | ||
hide_body: true | ||
hide_body: false | ||
pages: | ||
- /about.md | ||
- /index.md | ||
fields: | ||
- name: title | ||
label: Title | ||
|
This file contains 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
This file was deleted.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,57 +1,63 @@ | ||
--- | ||
layout: page | ||
layout: default | ||
--- | ||
{% comment %} | ||
This layout is used by the documents in the _posts/ collection | ||
{% endcomment %} | ||
|
||
{% include breadcrumbs.html %} | ||
|
||
<div class="meta"> | ||
{% if page.date %} | ||
<div class="post-date">{{ page.date | date_to_string }}</div> | ||
{% endif %} | ||
{% if page.tags.size > 0 %} | ||
<span class="meta-separator">•</span> | ||
<ul class="tags-list"> | ||
{% for tag in page.tags %} | ||
<li class="inline tag_list_item"> | ||
<a class="tag_list_link" href="{{ "/tag/" | append: tag | relative_url }}">{{ tag }}</a> | ||
{% if forloop.last == true %}{% else %} | ||
<span>,</span> | ||
{% endif %} | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
{% endif %} | ||
</div> | ||
<div class="container pure-g"> | ||
<div class="pure-u-1"> | ||
<div class="content content-narrow"> | ||
<div class="meta"> | ||
{% if page.date %} | ||
<div class="post-date">{{ page.date | date_to_string }}</div> | ||
{% endif %} | ||
{% if page.tags.size > 0 %} | ||
<span class="meta-separator">•</span> | ||
<ul class="tags-list"> | ||
{% for tag in page.tags %} | ||
<li class="inline tag_list_item"> | ||
<a class="tag_list_link" href="{{ "/tag/" | append: tag | absolute_url }}">{{ tag }}</a> | ||
{% if forloop.last == true %}{% else %} | ||
<span>,</span> | ||
{% endif %} | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
{% endif %} | ||
</div> | ||
|
||
{{ content }} | ||
{{ content }} | ||
|
||
{% if page.related_posts.size > 0 %} | ||
<h2> Related Posts </h2> | ||
<div class="grid-layout"> | ||
<div class="pure-g"> | ||
{% for item in page.related_posts %} | ||
{% assign posts = site.posts | where:"path", item %} | ||
{% for post in posts %} | ||
<div class="pure-u-1 pure-u-md-1-3"> | ||
<div class="card"> | ||
<div class="card-header"> | ||
{% if post.thumbnail and post.thumbnail != "" %} | ||
<img src="{{ post.thumbnail | relative_url }}" alt="{{ post.title }}"> | ||
{% else %} | ||
<img src="{{ "/img/placeholder.png" | relative_url }}" alt="{{ post.title }}"> | ||
{% endif %} | ||
</div> | ||
<div class="card-body"> | ||
<h3><a href="{{ post.url | relative_url }}">{{ post.title }}</a></h3> | ||
<p>{{ post.sub-title | slice: 0, 80 }}</p> | ||
</div> | ||
{% if page.related_posts.size > 0 %} | ||
<h2> Related Posts </h2> | ||
<div class="grid-layout"> | ||
<div class="pure-g"> | ||
{% for item in page.related_posts %} | ||
{% assign posts = site.posts | where:"path", item %} | ||
{% for post in posts %} | ||
<div class="pure-u-1 pure-u-md-1-3"> | ||
<div class="card"> | ||
<div class="card-header"> | ||
{% if post.thumbnail and post.thumbnail != "" %} | ||
<img src="{{ post.thumbnail | absolute_url }}" alt="{{ post.title }}"> | ||
{% else %} | ||
<img src="{{ "/img/placeholder.png" | absolute_url }}" alt="{{ post.title }}"> | ||
{% endif %} | ||
</div> | ||
<div class="card-body"> | ||
<h3><a href="{{ post.url | absolute_url }}">{{ post.title }}</a></h3> | ||
<p>{{ post.sub-title | slice: 0, 80 }}</p> | ||
</div> | ||
</div> | ||
</div> | ||
{% endfor %} | ||
{% endfor %} | ||
</div> | ||
</div> | ||
{% endfor %} | ||
{% endfor %} | ||
{% endif %} | ||
</div> | ||
</div> | ||
{% endif %} | ||
</div> |
This file contains 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
Oops, something went wrong.