James Peret's blog. Built with Jekyll and the Mikey theme.

sidebar-nav.html 789B

123456789101112131415161718192021
  1. <nav role="navigation" class="sidebar sidebar--right">
  2. <a href="{{site.baseurl}}" class="textLogo textLogo--white textLogo--sidebar">{{ site.name }}</a>
  3. <ul class="sidebar-recentPosts">
  4. {% for post in site.posts offset:0 limit:10 %}
  5. {% if post.title == page.title %}
  6. <!-- exclude current post -->
  7. {% else %}
  8. <li>
  9. {% if post.image.feature %}
  10. <a href="{{ post.url }}" class="sidebar-recentPosts-image-wrapper">
  11. <img src="{{ post.image.feature | prepend: site.baseurl_featured_thumbnail }}" style="" alt="">
  12. </a>
  13. {% endif %}
  14. <a href="{{ post.url }}">{{ post.title }}</a>
  15. <div class="postMeta">{{ post.date | date_to_string }}</div>
  16. </li>
  17. {% endif %}
  18. {% endfor %}
  19. </ul>
  20. </nav>