index.html 412 B

123456789101112131415161718
  1. ---
  2. layout: default
  3. ---
  4. <div class="posts">
  5. {% for post in site.posts %}
  6. <article class="post">
  7. <h2><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h2>
  8. <div class="entry">
  9. {{ post.excerpt }}
  10. </div>
  11. <a href="{{ site.baseurl }}{{ post.url }}" class="read-more" aria-label="Leer más sobre {{ post.title }}">Leer más</a>
  12. </article>
  13. {% endfor %}
  14. </div>