Basic version of the sidebar
This commit is contained in:
parent
eb9a650e9e
commit
9eb2643e9c
1 changed files with 12 additions and 6 deletions
|
@ -15,6 +15,18 @@
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="panel radius">
|
||||||
|
<h3>Recent posts</h3>
|
||||||
|
<ul>
|
||||||
|
{% for post in site.posts limit:5 %}
|
||||||
|
<li>
|
||||||
|
<a href="{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a>
|
||||||
|
</li>
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="panel radius">
|
<div class="panel radius">
|
||||||
<h3>Links</h3>
|
<h3>Links</h3>
|
||||||
{% for link_cat in site.data.links %}
|
{% for link_cat in site.data.links %}
|
||||||
|
@ -26,10 +38,4 @@
|
||||||
</ul>
|
</ul>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="panel radius">
|
|
||||||
<h3>Recent comments</h3>
|
|
||||||
<p>TODO</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</aside>
|
</aside>
|
Reference in a new issue