<!– _includes/blog.html –>
{% for post in site.posts %}
<!– make a jumbotron with title date and exerpt –>
<div class=“jumbotron position-relative bg-transparent shadow rounded”>
<h1>{{ post.title }}</h1> <h2 class="lead text-muted">{{ post.date | date_to_string }}</h2> {% include tags.html %} <hr class="my-2"> <p>{{ post.excerpt }}</p> <a href="{{ post.url | absolute_url }}" class="btn btn-block stretched-link"> <span class="fas fa-plus"></span> </a>
</div>
{% endfor %}
<!– _includes/blog.html EOF–>