aboutsummaryrefslogtreecommitdiff
path: root/doc-tool/resources/_layouts/blog-page.html
blob: b99a16b9c044be149ab05e84a27da0b8f15649b8 (plain) (blame)
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
---
layout: sidebar
---

<div id="post-title">
    <h3 id="post-date">
        {{ page.date | date: '%B %d, %Y' }}
    </h3>
    <h1 id="main-title">{{ page.title }}</h1>
    {% if page.subTitle %}
    <h2 id="sub-title">{{ page.subTitle }}</h2>
    {% endif %}
</div>

<div id="blog-post-container">
    {{ content }}
</div>

{% if page.author %}
<div id="post-footer">
    {% if page.authorImg %}
    <img id="author-image" src="{{ site.baseurl }}/{{ page.authorImg }}">
    {% endif %}
    <span id="post-author">
        {% if page.authorImg == null %}- {% endif %}{{ page.author }}
    </span>
</div>
{% endif %}