feather/_includes/footer.html

13 lines
557 B
HTML
Raw Normal View History

2017-05-30 03:05:49 +03:00
<footer class="flex flex-column items-center pt5-ns pb5">
2017-05-13 02:32:49 +03:00
<ul class="flex flex-column flex-row-l justify-center w-80 mv0 pl0 list">
{% for link in include.links %}
2017-05-28 07:22:58 +03:00
<li class="mh3-l pv3 pv0-l f5 bb b--black-10 bn-l">
2017-05-13 02:32:49 +03:00
<a class="lh-copy color-inherit no-underline dim" href="{{ link.url }}" target="_blank">{{ link.title }}</a>
</li>
{% endfor %}
</ul>
<p class="mt5 mb2 lh-copy black-90 dim">
<a class="no-underline color-inherit" href="http://colebemis.com" target="_blank">Made with &lt;3 by Cole Bemis</a>
</p>
2017-02-26 07:08:10 +03:00
</footer>