Hide footer tags link if no tags exist

Hide meta description if DESCRIPTION is undefined

Minor improvements
main
Raymond Wanyoike 2016-11-16 15:17:40 +03:00
parent d7b535dc95
commit bfb5895c63
6 changed files with 14 additions and 7 deletions

View File

@ -71,6 +71,7 @@ blockquote {
.header {
border-bottom: 1px solid #ddd;
padding-bottom: 10px;
}
.main {
@ -102,12 +103,12 @@ blockquote {
.header p {
font-size: 1.1em;
margin: 20px 0;
margin-top: 20px;
}
.header ul {
font-family: Montserrat, 'Helvetica Neue', sans-serif;
margin-bottom: 10px;
margin-bottom: 0;
}
.header li {

View File

@ -118,11 +118,13 @@
{% endif %}
<li><a href="{{ SITEURL }}/archives.html">Archives</a></li>
<li><a href="{{ SITEURL }}/categories.html">Categories</a></li>
{% if tags|length %}
<li><a href="{{ SITEURL }}/tags.html">Tags</a></li>
{% endif %}
</nav>
</div>
<div class="col-sm-6 hidden-xs text-right text-muted">
Generated by <a href="https://github.com/getpelican/pelican" target="_blank">Pelican</a> using <a href="https://github.com/nairobilug/pelican-alchemy">&#x2728; alchemy</a>
Generated by <a href="https://github.com/getpelican/pelican" target="_blank">Pelican</a> using <a href="https://github.com/nairobilug/pelican-alchemy" target="_blank">&#x2728; alchemy</a>
</div>
</div>
</div>

View File

@ -5,9 +5,10 @@
i[r] = i[r] || function() {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o), m = s.getElementsByTagName(o)[0];
a = s.createElement(o);
a.async = 1;
a.src = g;
m = s.getElementsByTagName(o)[0];
m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', '{{ GOOGLE_ANALYTICS }}', 'auto');

View File

@ -2,12 +2,13 @@
<hr>
<div id="disqus_thread"></div>
<script>
var disqus_config = function () {
var disqus_config = function() {
this.page.url = '{{ SITEURL }}/{{ output_file }}';
this.page.identifier = '{{ article.slug }}';
};
(function() {
var d = document, s = d.createElement('script');
var d = document;
var s = d.createElement('script');
s.src = '//{{ DISQUS_SITENAME }}.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);

View File

@ -1,4 +1,4 @@
{% if DEFAULT_PAGINATION %}
{% if articles_paginator.num_pages > 1 %}
<hr>
<ul class="pagination">
{% if articles_page.has_previous() %}

View File

@ -2,7 +2,9 @@
{% block head %}
{{ super() }}
{% if DESCRIPTION %}
<meta name="description" content="{{ DESCRIPTION|striptags }}">
{% endif %}
{% endblock %}
{% block title %}