Browse Source

add the atom feed link to the bottom of the page.

main
John-Mark Gurney 3 years ago
parent
commit
010c825a8d
2 changed files with 18 additions and 7 deletions
  1. +4
    -0
      content/media/css/custom.css
  2. +14
    -7
      layout/base.j2

+ 4
- 0
content/media/css/custom.css View File

@@ -64,6 +64,10 @@ ul.tags li {
display: inline-block;
}

ul.footer {
padding-left: 0;
}

pre {
white-space: pre-wrap;
}


+ 14
- 7
layout/base.j2 View File

@@ -94,15 +94,22 @@
{% block main %}
{% endblock main %}
{% endblock container %}
<footer>
<div class="footer">
<div class="contact">
<ul class="tags">
<li><a href="https://twitter.com/{{ site.context.tweet_via }}">Twitter</a></li>
<article>
<section>
<footer>
<div class="footer tags prevnext">

<ul class="tags footer">

<li><a href="{{ content_url('/atom.xml') }}">Atom Feed</a></li>
<li class="contact"><a href="https://twitter.com/{{ site.context.tweet_via }}">Twitter</a></li>

</ul>

</div>
</div>
</footer>
</footer>
</section>
</article>
</div>
{% endblock content%}
{% block js %}


Loading…
Cancel
Save