Removed redundant "Read" link from homepage

This commit is contained in:
Felipe M 2020-03-23 22:36:55 +01:00
parent 8ab31e9b07
commit 8f43d55c9c
Signed by: fmartingr
GPG key ID: 716BC147715E716F

View file

@ -7,11 +7,10 @@
<h2>Latest blog posts</h2> <h2>Latest blog posts</h2>
{% for post in site.get('/blog').pagination.for_page(1).pagination.items %} {% for post in site.get('/blog').pagination.for_page(1).pagination.items %}
<article class="blog-post center"> <article class="blog-post center">
<p class="text-right float-right"><a href="{{ post|url }}">Read &raquo;</a></p>
<h3 class="title"><a href="{{ post|url }}">{{ post.title }}</a></h3> <h3 class="title"><a href="{{ post|url }}">{{ post.title }}</a></h3>
<div class="info">{{ post.pub_date.strftime("%B %d, %Y") }}</div> <div class="info">{{ post.pub_date.strftime("%B %d, %Y") }}</div>
</article> </article>
<hr /> <hr />
{% endfor %} {% endfor %}
{{ this.body }} {{ this.body }}
{% endblock %} {% endblock %}