|
|
@ -16,7 +16,6 @@ |
|
|
|
<meta itemprop="image" content="{{ AVATAR }}"> |
|
|
|
<meta itemprop="description" content="{{ AUTHOR_DESCRIPTION }}"> |
|
|
|
|
|
|
|
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,600,700' rel='stylesheet' type='text/css'> |
|
|
|
<!-- Style Meta Data --> |
|
|
|
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/style.css" type="text/css"/> |
|
|
|
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/pygments.css" type="text/css"/> |
|
|
@ -38,7 +37,9 @@ |
|
|
|
<!-- Sidebar --> |
|
|
|
<aside> |
|
|
|
|
|
|
|
<h1>{{ SITENAME }}</h1> |
|
|
|
<h1> |
|
|
|
<a href="{{ SITEURL }}">{{ SITENAME }}</a> |
|
|
|
</h1> |
|
|
|
{% if SIDEBAR_DIGEST %} |
|
|
|
<p>{{ SIDEBAR_DIGEST }}</p> |
|
|
|
{% endif %} |
|
|
@ -65,13 +66,14 @@ |
|
|
|
{% if DISPLAY_CATEGORIES_ON_MENU and categories %} |
|
|
|
<ul class="navbar"> |
|
|
|
{% for cat, articles in categories if cat == 'Releases' %} |
|
|
|
<h2> |
|
|
|
<a href="{{ SITEURL }}/{{ cat.url }}" |
|
|
|
{% if cat == category %} class="active"{% endif %}> |
|
|
|
{{ cat }} |
|
|
|
</a> |
|
|
|
</h2> |
|
|
|
<h2> |
|
|
|
<a href="{{ SITEURL }}/{{ cat.url }}" |
|
|
|
{% if cat == category %} class="active"{% endif %}> |
|
|
|
{{ cat }} |
|
|
|
</a> |
|
|
|
</h2> |
|
|
|
{% if cat == 'Releases' %} |
|
|
|
<br /> |
|
|
|
{% for article in articles if loop.index < 6 %} |
|
|
|
<li> |
|
|
|
<a href="{{ SITEURL }}/{{ article.url }}" |
|
|
@ -144,13 +146,15 @@ |
|
|
|
<!-- Footer --> |
|
|
|
{% if DISPLAY_FOOTER or DISPLAY_FOOTER is not defined %} |
|
|
|
<footer> |
|
|
|
<p> |
|
|
|
Blog powered by <a href="http://getpelican.com/">Pelican</a>, |
|
|
|
which takes great advantage of <a href="http://python.org">Python</a>. |
|
|
|
<a>Hacked</a> |
|
|
|
original theme <a href="https://github.com/parbhat/pelican-blue">Pelican-Blue</a> |
|
|
|
by <a href="https://parbhatpuri.com/">@parbhat</a>. |
|
|
|
</p> |
|
|
|
<p> |
|
|
|
Blog powered by <a href="http://getpelican.com/">Pelican</a>, |
|
|
|
which takes great advantage of <a href="http://python.org">Python</a>. |
|
|
|
<br /> |
|
|
|
<a href="https://forja.laloka.org/buttle/pelican-red">This theme</a> |
|
|
|
is a fork of the |
|
|
|
<a href="https://github.com/parbhat/pelican-blue">Pelican-Blue</a> |
|
|
|
theme. |
|
|
|
</p> |
|
|
|
</footer> |
|
|
|
{% endif %} |
|
|
|
|
|
|
|