beautifulSA-jekyll/_layouts/page.html

26 lines
527 B
HTML
Raw Normal View History

2015-03-02 21:06:05 +01:00
---
layout: default
---
{% if page.title %}
<header class="header-page">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<div class="page-heading">
<h1>{{ page.title }}</h1>
2015-03-03 10:03:01 +01:00
{% if page.subtitle %}
2015-03-02 21:06:05 +01:00
<hr class="small">
2015-03-03 10:03:01 +01:00
<span class="page-subheading">{{ page.subtitle }}</span>
2015-03-02 21:06:05 +01:00
{% endif %}
</div>
</div>
</div>
</header>
{% endif %}
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
{{ content }}
</div>
</div>