Skip to content
This repository has been archived by the owner on Jun 10, 2024. It is now read-only.

Latest commit

 

History

History
45 lines (34 loc) · 1.16 KB

index.md

File metadata and controls

45 lines (34 loc) · 1.16 KB
layout
page

{% for post in site.posts limit:1 %}

{{ post.title }}

{{ post.date | date: "%b %-d, %Y" }}{% if post.author %} • {{ post.author }}{% endif %}{% if post.meta %} • {{ post.meta }}{% endif %}

{{ post.content }}
{% include post_ending_cta.html %}

{% endfor %}

Previous posts

    {% for post in site.posts offset:1 %}
      <li>
          {% for tag in post.tags %}
          <i class="fa {{ tag }} fa-fw"></i>
          {% endfor %}
          <a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
        <span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
      </li>
    

    {% endfor %}

<script> window.location.href = "https://buttondown.email/blog"; </script>