annotate _layouts/post.html @ 54:98a7ea218860 kai

Keep displaying page title in case of posts.
author Kai T. Ohlhus <k.ohlhus@gmail.com>
date Tue, 11 Oct 2016 15:54:09 +0200
parents aa0c5c467963
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
7abe02bf29ec initial commit
Alex Krolick <whokilledtheelectricmonk@gmail.com>
parents:
diff changeset
1 ---
7abe02bf29ec initial commit
Alex Krolick <whokilledtheelectricmonk@gmail.com>
parents:
diff changeset
2 layout: default
7abe02bf29ec initial commit
Alex Krolick <whokilledtheelectricmonk@gmail.com>
parents:
diff changeset
3 ---
7abe02bf29ec initial commit
Alex Krolick <whokilledtheelectricmonk@gmail.com>
parents:
diff changeset
4 <article class="post" itemscope itemtype="http://schema.org/BlogPosting">
7abe02bf29ec initial commit
Alex Krolick <whokilledtheelectricmonk@gmail.com>
parents:
diff changeset
5
7abe02bf29ec initial commit
Alex Krolick <whokilledtheelectricmonk@gmail.com>
parents:
diff changeset
6 <header class="post-header">
54
98a7ea218860 Keep displaying page title in case of posts.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 48
diff changeset
7 <h1>
98a7ea218860 Keep displaying page title in case of posts.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 48
diff changeset
8 {{ page.title }}
98a7ea218860 Keep displaying page title in case of posts.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 48
diff changeset
9 <time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
98a7ea218860 Keep displaying page title in case of posts.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 48
diff changeset
10 ({{ page.date | date: "%b %-d, %Y" }})
98a7ea218860 Keep displaying page title in case of posts.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 48
diff changeset
11 </time>
98a7ea218860 Keep displaying page title in case of posts.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 48
diff changeset
12 </h1>
0
7abe02bf29ec initial commit
Alex Krolick <whokilledtheelectricmonk@gmail.com>
parents:
diff changeset
13 </header>
7abe02bf29ec initial commit
Alex Krolick <whokilledtheelectricmonk@gmail.com>
parents:
diff changeset
14
7abe02bf29ec initial commit
Alex Krolick <whokilledtheelectricmonk@gmail.com>
parents:
diff changeset
15 <div class="post-content" itemprop="articleBody">
7abe02bf29ec initial commit
Alex Krolick <whokilledtheelectricmonk@gmail.com>
parents:
diff changeset
16 {{ content }}
7abe02bf29ec initial commit
Alex Krolick <whokilledtheelectricmonk@gmail.com>
parents:
diff changeset
17 </div>
7abe02bf29ec initial commit
Alex Krolick <whokilledtheelectricmonk@gmail.com>
parents:
diff changeset
18
7abe02bf29ec initial commit
Alex Krolick <whokilledtheelectricmonk@gmail.com>
parents:
diff changeset
19 </article>