32 lines
No EOL
710 B
HTML
32 lines
No EOL
710 B
HTML
{% include 'block_header_open.html' %}
|
|
{% if post.title %}
|
|
<title>{{ post.title }} | {{ site.domain }}</title>
|
|
{% else %}
|
|
<title>{{ post.name }} | {{ site.domain }}</title>
|
|
{% endif %}
|
|
{% include 'block_header_close.html' %}
|
|
|
|
|
|
<section class="content-body">
|
|
<article class="h-entry singular">
|
|
<header>
|
|
<div class="content-inner hide">
|
|
<h1>
|
|
<a class="u-url" href="/{{ post.slug }}" rel="bookmark" title="{{ post.title }}">
|
|
<span class="p-name">{{ post.title }}</span>
|
|
</a>
|
|
</h1>
|
|
</div>
|
|
</header>
|
|
|
|
<div class="e-content">
|
|
<div class="content-inner">
|
|
{{ post.html }}
|
|
<br class="clear" />
|
|
</div>
|
|
</div>
|
|
|
|
</article>
|
|
</section>
|
|
|
|
{% include 'block_footer.html' %} |