all repos — nasg @ cae5490a60f42c096b13ac284b30e192a4f721f3

templates/page.html (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
{% 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' %}