github.com/tickoalcantara12/micro/v3@v3.0.0-20221007104245-9d75b9bcbab9/docs/blog/index.html (about) 1 --- 2 layout: default 3 title: Blog 4 cover: false 5 pagination: 6 enabled: true 7 --- 8 9 <style> 10 .desc { 11 font-weight: 400; 12 color: #9EABB3; 13 } 14 .post-title a { color: black; } 15 </style> 16 17 <main id="content" class="content" role="main"> 18 <div class="post"> 19 <h2 class="post-header" style="border-bottom: 0">Blog</h2> 20 </div> 21 22 {% for post in paginator.posts %} 23 24 <article class="post"> 25 <header class="post-header"> 26 <h2 class="post-title"><a href="{{ post.url | prepend:site.baseurl }}">{{ post.title }}</a></h2> 27 </header> 28 <section class="post-excerpt"> 29 {{ post.excerpt }} <a class="read-more" href="{{ post.url | prepend:site.baseurl }}">more »</a> 30 </section> 31 <footer class="post-meta"> 32 {% if site.author %} 33 <img class="author-thumb" src="{{ site.baseurl }}/blog/images/profile.jpg" alt="Author's profile picture" nopin="nopin" /> 34 <a href="{{ site.author_url }}">{{ site.author }}</a> 35 {% endif %} 36 <time class="post-date" datetime="{{ post.date | date:"%Y-%m-%d" }}"> 37 {{ post.date | date_to_string }} 38 </time> 39 </footer> 40 </article> 41 42 {% endfor %} 43 44 <br> 45 {% include pagination.html %} 46 47 </main>