-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpost.html
More file actions
49 lines (39 loc) · 1.46 KB
/
Copy pathpost.html
File metadata and controls
49 lines (39 loc) · 1.46 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
---
layout: default
---
<div class="post-ribbon"></div>
<div class="container post-container">
<div class="post-page card-panel z-depth-2">
<div class="post-section">
<p class="grey-text">
<i class="mdi mdi-calendar"></i>
{% if page.date %}{{ page.date | date: "%b %-d, %Y" }}{% else %}unknown{% endif %}
<i class="mdi mdi-account-circle"></i>
{% if page.author %}{{ page.author }}{% else %}{{ site.author }}{% endif %}
<i class="mdi mdi-label"></i>
<span class="capitalize">
{% if page.categories %}{% for category in page.categories %}{{ category }}{% unless forloop.last %}, {% endunless %}{% endfor %}
{% else %}unknown
{% endif %}
</span>
 <i class="mdi mdi-refresh"></i> UPDATE: {% if page.update %}{{ page.update | date: "%b %-d, %Y" }}{% else %}{{ page.last_modified_at | date: "%b %-d, %Y" }}{% endif %}
</p>
<div class="post-header">
<h1 class="post-title">{{ page.title }}</h1>
{% if page.tags %}
<i class="post-tag mdi mdi-tag-multiple waves-effect waves-light"></i>
{% for tag in page.tags %}
<span class="chip">{{ tag }}</span>
{% endfor %}
{% endif %}
</div>
<article class="post-content">
{{ content | toc_generate }}
</article>
{% include share.html %}
</div>
</div>
{% if page.mathjax %}
{% include mathjax_support.html %}
{% endif %}
</div>