46 lines
1.2 KiB
HTML
46 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="{{ site.lang }}">
|
|
|
|
{% include head.html %}
|
|
|
|
<body id="page-top" data-spy="scroll" data-target=".navbar-fixed-top">
|
|
|
|
{% include navigation.html %}
|
|
|
|
<section id="{{ page.title }}" class="container content-section text-center">
|
|
<div class="row">
|
|
<div class="col-lg-8 col-lg-offset-2">
|
|
|
|
<div id="archives">
|
|
<div>
|
|
{% assign tag = page.title %}
|
|
|
|
<h3 id="#{{ tag }}">#{{ tag }}</h3>
|
|
|
|
{% for post in site.posts %}
|
|
{% if post.tags contains tag %}
|
|
<h4 align="left"><strong>{{ post.date | date_to_string }}</strong> <small>. {{ post.category }} .</small> <a href="{{site.baseurl}}{{ post.url }}"> <strong>{{ post.title }} </a> </strong> <small><a href="{{site.baseurl}}{{post.url}}#disqus_thread">Comments</a></small></h4>
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section id="{{ page.title }}" class="container content-section text-center">
|
|
<div class="row">
|
|
<div class="col-lg-8 col-lg-offset-2">
|
|
{% include social-buttons.html %}
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
{% include footer.html %}
|
|
|
|
{% include js.html %}
|
|
|
|
</body>
|
|
</html>
|