0458bf9803
Tags will display as plain text if a user adds tags to a post. If user sets 'link-tags: true' in _config.yml, then Jekyll will make a new page for each tag which lists all posts with given tag (provided the site is not deployed through GitHub pages)
47 lines
1.4 KiB
HTML
47 lines
1.4 KiB
HTML
---
|
|
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">
|
|
{% if page.tags.size > 0 %}
|
|
<div class="blog-tags">
|
|
Tags:
|
|
{% if site.link-tags %}
|
|
{% for tag in page.tags %}
|
|
<a href="/tag/{{ tag }}">{{ tag }}</a>
|
|
{% endfor %}
|
|
{% else %}
|
|
{{ page.tags | join: ", " }}
|
|
{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
{{ content }}
|
|
</article>
|
|
|
|
<ul class="pager blog-pager">
|
|
{% if page.previous.url %}
|
|
<li class="previous">
|
|
<a href="{{ page.previous.url | prepend: site.baseurl | 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 | prepend: site.baseurl | replace: '//', '/' }}" data-toggle="tooltip" data-placement="top" title="{{page.next.title}}">Next Post →</a>
|
|
</li>
|
|
{% endif %}
|
|
</ul>
|
|
|
|
{% if page.comments %}
|
|
<div class="disqus-comments">
|
|
{% include disqus.html %}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|