blog article footer

This commit is contained in:
Adrian Sampson 2012-08-01 13:49:53 -07:00
parent 457cb9204a
commit bfc1481e10
2 changed files with 19 additions and 0 deletions

View file

@ -76,6 +76,14 @@
<div class="span8 screen" id="{{ page.section }}">
{{ content }}
{% if page.section == 'blog' %}
<p class="articleFooter">
Have comments or questions?
<a href="mailto:adrian@radbox.org">Send me an email</a>,
tweet at <a href="http://twitter.com/b33ts">@b33ts</a>,
or <a href="http://news.ycombinator.com/submitlink?u={{ site.url | cgi_escape }}{{ page.url | cgi_escape }}&t={{ page.title | cgi_escape }}">discuss on Hacker News</a>.
</p>
{% endif %}
</div>
<div class="span4" id="sidebar">

View file

@ -98,3 +98,14 @@ ul, ol {
#donate input[type=text] {
width: 5em;
}
.articleFooter {
color: #999;
font-style: italic;
border-top: 1px solid #ccc;
margin-top: 1.25em;
}
.articleFooter a {
color: #666;
text-decoration: underline;
}