beautifulSA-jekyll/_layouts/post.html

71 lines
2.8 KiB
HTML
Raw Normal View History

2015-03-02 21:06:05 +01:00
---
layout: base
2015-03-02 21:06:05 +01:00
---
2016-03-18 12:33:17 +01:00
{% include header.html type="post" %}
2015-03-02 21:06:05 +01:00
2020-08-23 21:23:14 +02:00
<div class="{% if page.full-width %} container-fluid {% else %} container-md {% endif %}">
2015-03-02 21:06:05 +01:00
<div class="row">
2020-08-23 21:23:14 +02:00
<div class="{% if page.full-width %} col {% else %} col-xl-8 offset-xl-2 col-lg-10 offset-lg-1 {% endif %}">
{% if page.gh-repo %}
{% assign gh_split = page.gh-repo | split:'/' %}
{% assign gh_user = gh_split[0] %}
{% assign gh_repo = gh_split[1] %}
<div id="header-gh-btns">
{% if page.gh-badge.size > 0 %}
{% for badge in page.gh-badge %}
{% case badge %}
{% when 'star'%}
<iframe src="https://ghbtns.com/github-btn.html?user={{ gh_user }}&repo={{ gh_repo }}&type=star&count=true" frameborder="0" scrolling="0" width="120px" height="20px"></iframe>
{% when 'watch'%}
<iframe src="https://ghbtns.com/github-btn.html?user={{ gh_user }}&repo={{ gh_repo }}&type=watch&v=2&count=true" frameborder="0" scrolling="0" width="120px" height="20px"></iframe>
{% when 'fork'%}
<iframe src="https://ghbtns.com/github-btn.html?user={{ gh_user }}&repo={{ gh_repo }}&type=fork&count=true" frameborder="0" scrolling="0" width="120px" height="20px"></iframe>
{% when 'follow'%}
<iframe src="https://ghbtns.com/github-btn.html?user={{ gh_user }}&type=follow&count=true" frameborder="0" scrolling="0" width="220px" height="20px"></iframe>
{% endcase %}
{% endfor %}
{% endif %}
</div>
{% endif %}
2016-03-18 12:33:17 +01:00
<article role="main" class="blog-post">
2016-07-28 01:46:31 +02:00
{{ content }}
</article>
2016-07-28 01:46:31 +02:00
{% if page.tags.size > 0 %}
2016-07-27 22:19:16 +02:00
<div class="blog-tags">
2016-08-01 03:30:03 +02:00
Tags:
{% if site.link-tags %}
2016-07-27 22:19:16 +02:00
{% for tag in page.tags %}
<a href="{{ '/tags' | relative_url }}#{{- tag -}}">{{- tag -}}</a>
2016-07-27 22:19:16 +02:00
{% endfor %}
{% else %}
{{ page.tags | join: ", " }}
{% endif %}
2016-07-27 22:19:16 +02:00
</div>
2016-07-28 01:46:31 +02:00
{% endif %}
{% if page.social-share %}
{% include social-share.html %}
{% endif %}
<ul class="pagination blog-pager">
2016-03-18 12:33:17 +01:00
{% if page.previous.url %}
<li class="page-item previous">
<a class="page-link" href="{{ page.previous.url | relative_url }}" data-toggle="tooltip" data-placement="top" title="{{page.previous.title}}">&larr; Previous Post</a>
</li>
2016-03-18 12:33:17 +01:00
{% endif %}
{% if page.next.url %}
<li class="page-item next">
<a class="page-link" href="{{ page.next.url | relative_url }}" data-toggle="tooltip" data-placement="top" title="{{page.next.title}}">Next Post &rarr;</a>
</li>
2016-03-18 12:33:17 +01:00
{% endif %}
</ul>
{% include comments.html %}
2016-03-18 12:33:17 +01:00
</div>
2015-03-02 21:06:05 +01:00
</div>
</div>