-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
28 lines (26 loc) · 783 Bytes
/
home.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
---
layout: default
---
<main class="mdl-layout__content">
<div class="mdl-grid">
<div class="mdl-cell mdl-cell--2-col mdl-cell--hide-tablet mdl-cell--hide-phone"></div>
<div class=" mdl-cell mdl-cell--8-col mdl-color-text--grey-800">
<div class="mdl-color-text--grey-500">
{{ page.date | date: "%b %-d, %Y" }}{% if page.author %} • {{ page.author }}{% endif %}{% if page.meta %} • {{ page.meta }}{% endif %}
</div>
{% if page.title %}
<h3>{{ page.title }}</h3>
{% endif %}
<article class="post-content">
<p>{{ content }}</p>
</article>
{% if site.disqus %}
<div>
<h3>Comments</h3>
{% include disqus.html %}
</div>
{% endif %}
</div>
</div>
</main>
<!-- /End Layout -->