-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththingspost.html
More file actions
41 lines (36 loc) · 1.89 KB
/
Copy paththingspost.html
File metadata and controls
41 lines (36 loc) · 1.89 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
<!-- Begin Post-->
<section id="post-section" class="post-section">
<div class="content-wrapper text-left">
<div class="col-md-10 col-sm-10 col-lg-offset-2 col-md-offset-2 col-sm-offset-1">
<div class="col-lg-8 col-md-10 col-xs-12">
<article class="row post">
<div class="post-body">{{ content }}</div>
<div id="page-navigation" class="page-navigation">
<div class="next col-xs-6">
{% if page.next.url %}
<a href="{{ page.next.url | prepend: site.baseurl }}" title="{{ page.next.title | strip_html }}">« {{page.next.title | strip_html | truncate: 15 }}</a>
{% endif %}
</div>
<div class="previous col-xs-6 text-right">
{% if page.previous.url %}
<a href="{{ page.previous.url | prepend: site.baseurl }}" title="{{ page.previous.title | strip_html }}">{{page.previous.title | strip_html | truncate: 15 }} »</a>
{% endif %}
</div>
</div>
{% if include.isStaticPost == false %}
<div class="comments">
{% if site.blogCommentsEnabled %} {% include disqus-comments.html %} {% endif %}
</div>
{% endif %}
</article>
{% if include.isStaticPost == false %}
<div class="row text-center">
<p class="rss-subscribe">Subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}" target="_blank">via RSS</a>
</p>
</div>
{% endif %}
</div>
</div>
</div>
</section>
<!-- End Post -->