forked from daattali/beautiful-jekyll
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpost.html
More file actions
46 lines (39 loc) · 1.23 KB
/
post.html
File metadata and controls
46 lines (39 loc) · 1.23 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
---
layout: base
---
{% include header.html type="post" %}
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<article role="main" class="blog-post">
{{ content }}
</article>
{% if page.tags.size > 0 %}
<div class="blog-tags">
Tags:
{{ page.tags | join: ", " }}
</div>
{% endif %}
{% unless page.social-share == false %}
{% include social-share.html %}
{% endunless %}
<ul class="pager blog-pager">
{% if page.previous.url %}
<li class="previous">
<a href="{{ page.previous.url | replace: '//', '/' }}" data-toggle="tooltip" data-placement="top" title="{{page.previous.title}}">← Previous Post</a>
</li>
{% endif %}
{% if page.next.url %}
<li class="next">
<a href="{{ page.next.url | replace: '//', '/' }}" data-toggle="tooltip" data-placement="top" title="{{page.next.title}}">Next Post →</a>
</li>
{% endif %}
</ul>
{% unless page.comments == false %}
<div class="disqus-comments">
{% include disqus.html %}
</div>
{% endunless %}
</div>
</div>
</div>