Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2018-04-24 19:33:48 +04:00
parent ffa2460dde
commit e0bfa7a3b0
Signed by: Valentin Popov
GPG Key ID: 269A00ACA90A8EA3
2 changed files with 22 additions and 3 deletions

View File

@ -1,3 +1,9 @@
<section class="container">
&copy; {{ site.time | date: "%Y" }}. All rights reserved.
</section>
<footer class="footer">
<small>
<a href="mailto:{{ site.author.email | strip_newlines | strip_html | strip | normalize_whitespace | uri_escape }}">Contact</a>
<span>|</span>
<a href="{{ site.rss | relative_url | uri_escape }}">Subscription</a>
<span>|</span>
<a href="{{ '/sitemap.xml' | relative_url | uri_escape }}">Site Map</a>
</small>
</footer>

View File

@ -1,3 +1,16 @@
.footer {
padding-top: 1rem;
text-align: center;
a {
padding: 0 .5rem;
&:first-child {
padding-left: 0;
}
&:last-child {
padding-right: 0;
}
}
}