-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpost.html
53 lines (53 loc) · 1.86 KB
/
post.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="id">
<head>
{% include head.html %}
</head>
<body>
{% include github_corner.html %}
<div id="wrapper">
{% include navigation.html %}
<main>
<!-- Begin Content -->
<article>
<header>
<h2>
<a href="{{ page.url }}" rel="bookmark">{{ page.title | escape }}</a>
</h2>
<p>
Diposting oleh <span class="vcard"><span class="fn">{{ page.author }}</span></span>,
<span class="published" title="{{ page.date | date_to_xml_schema }}">{{ page.date | date: "%B %-d, %Y @ %l:%M %P" }}</span>
{% if page.categories.size > 0 %}
<span class="categories">di kategori
{% for category in page.categories %}
{% if forloop.last %}
<a href="/{{ category }}/" rel="category tag">{{ category | capitalize }}</a>
{% else %}
<a href="{{ category }}" rel="category tag">{{ category | capitalize }}</a>,
{% endif %}
{% endfor %}
</span>
{% endif %}
<br>
Diterjemahkan oleh <span class="translator">{{ page.translator }}</span>
</p>
</header>
<section>
<!-- Begin Post -->
{{ content }}
<!-- End Post -->
</section>
</article>
<nav class="pagination">
{% if page.previous %}
<a href="{{ page.previous.url }}" title="{{ page.previous.title }}" class="previous">{{ site.pagination.previous }}</a>
{% endif %}
{% if page.next %}
<a href="{{ page.next.url }}" title="{{ page.next.title }}" class="next">{{ site.pagination.next }}</a>
{% endif %}
</nav>
<!-- End Content -->
</main>
</div>
</body>
</html>