right.html 804 B

1234567891011121314151617181920212223242526272829
  1. {% unless site.related_posts and page.tags %}
  2. <div class="text-right">
  3. <a href="/">
  4. <img style="opacity:0.9" alt="Me" title="Hello world!" height="100px" src="//www.gravatar.com/avatar/3e7bc64a5aede02c493a6ed5b0ceb33e?s=200"></img>
  5. </a>
  6. </div>
  7. {% endunless %}
  8. {% if site.related_posts %}
  9. <div class="posts related-posts">
  10. <h3>Related Posts</h3>
  11. <ul class="list-unstyled">
  12. {% for rel_post in site.related_posts %}
  13. <li><code>{{ rel_post.date | date:'%Y-%m-%d' }}</code>&mdash; <a href="{{ rel_post.url }}">{{ rel_post.title }}</a></li>
  14. {% endfor %}
  15. </ul>
  16. </div>
  17. {% endif %}
  18. {% if page.tags %}
  19. <div class="posts tag-posts">
  20. <h3>Tags</h3>
  21. <ul class="list-inline">
  22. {% for tag in page.tags %}
  23. <li><a href="/tags.html#{{ tag }}-ref">#{{ tag }}</a></li>
  24. {% endfor %}
  25. </ul>
  26. </div>
  27. {% endif %}