Sha256: c6dc34c8716a73fc0de7bcbb2657e8b4a0871fbae30d0fb6f832e5b50c09d32e

Contents?: true

Size: 1.16 KB

Versions: 1

Compression:

Stored size: 1.16 KB

Contents

<!-- footer -->
<footer class="footer-wraper">

<div class="footer-header">
  <a href="{{ site.baseurl }}/">
  <h2>{% include site-logo.svg %} in {{ site.postal_add.city }}</h2></a>
</div>

<ul class="footer-nav-links sitemap">
  <h3>Sitemap</h3>
  {% for item in site.data.menu %}
  {% if item.sitemap == 1 %}
  <li><a href="{{ site.baseurl }}{{ item.link }}">
  {{ item.name }}
  </a></li>
  {% endif %}
  {% endfor %}
</ul>

<ul class="footer-nav-links category-links">
  <h3>Categories</h3>
  {% for category in site.categories %}
  <li><a href="{{ site.baseurl }}/slow-blog/categories/#{{ category[0] | slugify }}">
  {{ category[0] | upcase }}
  </a></li>
  {% endfor %}
</ul>

<ul class="footer-nav-links footer-services">
  <h3>Services</h3>
  {% for item in site.data.services %}
  <li>
  {{ item.name }}
  </li>
  {% endfor %}
</ul>

<!-- quick contact form -->

<div class="footer-contact">
{% include quick-contact.html %}
</div>

<!-- footer base and copyright -->

<div class="footer-base">
  <p class="slogan">made slowly ⚡served fast</p>
  <p class="copyright">&copy; <script>document.write(new Date().getFullYear())</script> {{ site.title }}</p>
</div>

</footer>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
made-slowly-0.0.1 _includes/footer.html