summaryrefslogtreecommitdiffstats
path: root/source/_layouts/page.html
blob: 886029e11ec194dc9b291e1ceefbabfb110e4a10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
---
layout: default
---

<article class="page">
    {% if page.title %}
    <h1 class="title">{% if site.titlecase %}{{ page.title | titlecase }}{% else %}{{ page.title }}{% endif %}</h1>
    {% endif %}
    {{ content }}
</article>
{% include post/sharing.html %}
{% if site.disqus_short_name and page.comments == true %}
<section id="comment">
    <h1 class="title">留言</h1>
    <div id="disqus_thread" aria-live="polite">{% include post/disqus_thread.html %}</div>
</section>
{% endif %}