aboutsummaryrefslogtreecommitdiff
path: root/docs/_layouts/blog.html
blob: fde08e14e2310b056269d059bdf174aa57172b71 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
layout: default
---

<h1 class="title">{{ page.title }}</h1>
<h2 class="subtitle">{{ page.subTitle }}</h2>

<div class="author-container {% if page.authorImg != null %} spaced {% endif %}">
    {% if page.authorImg != null %}
    <img src="{{ page.authorImg }}"/>
    {% endif %}
    <div class="author-info">
        <div>{{ page.author }}</div>
        <div>{{ page.date | date: '%B %d, %Y' }}</div>
    </div>
</div>

{{ content }}