Github page clones from TETRIS-2000 repositionnary

This commit is contained in:
adrienmalin
2018-08-21 12:49:26 +02:00
parent 591847e876
commit ffb2001a21
201 changed files with 21457 additions and 3073 deletions

20
_includes/sidebar.html Normal file
View File

@ -0,0 +1,20 @@
<div class="sidebar ">
<h2>Recent Posts</h2>
<ul>
{% for post in site.posts limit:5 %}
<li><a href="{{ post.url | relative_url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>
<div class="sidebar">
<h2>Tags</h2>
<ul class="sideBarTags">
{% assign tags = (site.tags | sort:0) %}
{% for tag in tags %}
<li>
<a href="{{ '/tag/' | append: tag[0] | relative_url }}" data-toggle="tooltip" data-placement="right" title="{{ tag[1].size }}">
<span>{{tag[0] }}</span></a></li>
{% endfor %}
</ul>
</div>