Posts list on homepage now works the same as other category pages. Getting away from page banners on top of site. Using seo_tag.title instead of generating the same thing by hand.
12 lines
565 B
HTML
12 lines
565 B
HTML
<div class="container">
|
|
<ul class="copyright">
|
|
<li>© {{ site.time | date: "%Y" }} {{ site.title }}</li>
|
|
{%- if site.page_contact -%}
|
|
<li><a href="mailto:{{ site.email | escape }}{%- if seo_tag.title? -%}?subject={{ seo_tag.title | url_encode }}{%- endif -%}">Contact Me About This Page</a></li>
|
|
{%- endif -%}
|
|
<!-- PER LICENSE OF THEME: ATTRIBUTION IS REQUIRED, DO NOT REMOVE -->
|
|
<li>Design: <a href="https://html5up.net">HTML5 UP</a></li>
|
|
<li>Jekyll Port: <a href="https://digitaladapt.com">DigitalAdapt</a></li>
|
|
</ul>
|
|
</div>
|