forked from psteinb/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpost.html
51 lines (44 loc) · 1.35 KB
/
post.html
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
layout: default
format: page-fullwidth
---
<div class="row t30">
<div class="small-12 columns">
<article itemscope itemtype="http://schema.org/Article">
<header>
{% if page.image.title %}
<figure>
<img src="{{ site.filesurl }}{{ page.image.title }}" width="970" alt="{{ page.title escape_once }}" itemprop="image">
{% if page.image.caption_url && page.image.caption %}
<figcaption class="text-right">
<a href="{{ page.image.caption_url }}">{{ page.image.caption }}</a>
</figcaption>
{% elsif page.image.caption %}
<figcaption class="text-right">
{{ page.image.caption }}
</figcaption>
{% endif %}
</figure>
{% endif %}
<span itemprop="name">
{% if page.subheadline %}<p class="subheadline">{{ page.subheadline }}</p>{% endif %}
<h1>{{ page.title }}</h1>
</span>
</header>
{% if page.teaser %}
<p class="teaser" itemprop="description">
{{ page.teaser }}
</p>
{% endif %}
<span itemprop="articleSection">
{{ content }}
</span>
{% if page.show_meta == true %}
{% include meta_information %}
{% endif %}
{% if page.comments == true %}
{% include comments %}
{% endif %}
</article>
</div>
</div>