1
0
Fork 0
mirror of https://github.com/Oreolek/raconteur.git synced 2024-07-08 01:14:23 +03:00
raconteur/_layouts/post.html
Bruno Dias 0fdfd7e9a8 Edits
2015-04-15 00:54:29 -03:00

37 lines
816 B
HTML

<!DOCTYPE html>
<html>
{% include head.html %}
<body>
{% include header.html %}
<header>
<div class="section post-head">
<div class="container">
<div class="eight columns">
<h1 class="post-title">{{ page.title }}</h1>
</div>
<div class="four columns">
{% if page.author %}
<p class="post-meta">{{ page.author }}
(<a href="{{ page.author_url }}">{{page.author_id}}</a>)</p>
{% endif %}
<p class="post-meta">{{ page.date | date: "%B %-d, %Y" }}</p>
</div>
</div>
</div>
</header>
<article>
<div class="section post-content">
<div class="container">
<div class="twelve columns">
{{ content }}
</div>
</div>
</div>
</article>
</div>
</body>
</html>