Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 532 Bytes

index.md

File metadata and controls

23 lines (19 loc) · 532 Bytes
layout
home

{% include map.html category="cover" %}

{% for post in site.posts %} {% if post.layout contains "cover" and post.location.ok %}
  <a href="{{post.url}}" class="tile-link">
    <div class="tile">
      <img src="{{post.image}}" alt="" class="tile-img">
      <div class="tile-overlay">
        <div class="tile-title">{{post.title}}</div>
      </div>
    </div>
  </a>

{% endif %}

{% endfor %}