forked from psteinb/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-fullwidth.html
42 lines (35 loc) · 951 Bytes
/
page-fullwidth.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
---
layout: default
format: page-fullwidth
---
{% if page.image.title %}
<div class="row t30">
<div class="small-12 columns">
<img src="{{ site.filesurl }}{{ page.image.title }}" width="970" alt="{{ page.title escape_once }}">
{% if page.image.caption_url && page.image.caption %}
<p class="text-right caption">
<a href="{{ page.image.caption_url }}">{{ page.image.caption }}</a>
</p>
{% endif %}
</div><!-- /.small-12.columns -->
</div><!-- /.row -->
{% endif %}
<div class="row t30">
<div class="medium-12 columns">
<article>
<header>
{% if page.subheadline %}<p class="subheadline">{{ page.subheadline }}</p>{% endif %}
<h1>{{ page.title }}</h1>
</header>
{% if page.teaser %}
<p class="teaser">
{{ page.teaser }}
</p>
{% endif %}
{{ content }}
{% if page.comments == true %}
{% include comments %}
{% endif %}
</article>
</div><!-- /.medium-12.columns -->
</div><!-- /.row -->