Created
January 6, 2018 07:10
-
-
Save danielschmitz/bd713f012c4a82a06b2a1db896143fb2 to your computer and use it in GitHub Desktop.
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
--- | |
layout: default | |
--- | |
<main id="scroll" class="home" role="main" itemprop="mainContentOfPage" itemscope="itemscope" itemtype="http://schema.org/Blog"> | |
{% for post in site.posts %} | |
<article role="article" class="post-item" itemscope="itemscope" itemtype="http://schema.org/BlogPosting" itemprop="blogPost"> | |
<a class="datetime" href="{{ post.url | prepend: site.baseurl }}"> | |
<meta itemprop="datePublished" content="{{post.date}}"> | |
<time datetime="{{ post.date | date_to_xmlschema }}"> | |
<span class="day"> | |
{{ post.date | date: "%d" }} | |
</span> | |
<span class="month-year"> | |
{{ post.date | date: "%B %Y" }} | |
</span> | |
</time> | |
</a> | |
<div class="content"> | |
<a href="{{ post.url | prepend: site.baseurl }}"><h2 class="post-title" itemprop="name">{{ post.title }}</h2></a> | |
<p class="description"> | |
{{ post.content | strip_html | truncatewords:40 }} | |
<a href="{{ post.url | prepend: site.baseurl }}" class="link">Read more about {{post.title}}</a> | |
</p> | |
<div class="tags"> | |
{% for tag in post.tags %} | |
<a href="{{ site.baseurl }}/tags/#{{tag | slugify }}">{{ tag }}</a> | |
{% endfor %} | |
</div> | |
</div> | |
</article> | |
{% endfor %} | |
</main> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment