sidebar.html 742 B

12345678910111213141516171819
  1. {% if page.author_profile or layout.author_profile or page.sidebar %}
  2. <div class="sidebar sticky">
  3. {% if page.author_profile or layout.author_profile %}{% include author-profile.html %}{% endif %}
  4. {% if page.sidebar %}
  5. {% for s in page.sidebar %}
  6. {% if s.image %}
  7. <img src="{{ s.image | relative_url }}"
  8. alt="{% if s.image_alt %}{{ s.image_alt }}{% endif %}">
  9. {% endif %}
  10. {% if s.title %}<h3>{{ s.title }}</h3>{% endif %}
  11. {% if s.text %}{{ s.text | markdownify }}{% endif %}
  12. {% if s.nav %}{% include nav_list nav=s.nav %}{% endif %}
  13. {% endfor %}
  14. {% if page.sidebar.nav %}
  15. {% include nav_list nav=page.sidebar.nav %}
  16. {% endif %}
  17. {% endif %}
  18. </div>
  19. {% endif %}