jekyll 3.2.1 default

This commit is contained in:
Virtua Creative
2016-03-24 15:49:02 -03:00
parent be20e2fcee
commit 0142a85cee
22 changed files with 829 additions and 54 deletions

View File

@ -1,9 +1,15 @@
---
layout: default
---
<h2>{{ page.title }}</h2>
<p class="meta">{{ page.date | date_to_string }}</p>
<article class="post" itemscope itemtype="http://schema.org/BlogPosting">
<div class="post">
{{ content }}
</div>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">{{ page.title }}</h1>
<p class="post-meta"><time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">{{ page.date | date: "%b %-d, %Y" }}</time>{% if page.author %} • <span itemprop="author" itemscope itemtype="http://schema.org/Person"><span itemprop="name">{{ page.author }}</span></span>{% endif %}</p>
</header>
<div class="post-content" itemprop="articleBody">
{{ content }}
</div>
</article>