header.html 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <div class="row">
  2. {% if SITEIMAGE %}
  3. <div class="col-sm-4">
  4. <a href="{{ SITEURL }}/">
  5. <img class="img-fluid rounded" src={{ SITEURL }}{{ SITEIMAGE }} alt="{{ SITENAME }}">
  6. </a>
  7. </div>
  8. {% endif %}
  9. <div class="col-sm-{% if SITEIMAGE %}8{% else %}12{% endif %}">
  10. <h1 class="title"><a href="{{ SITEURL }}/">{{ SITENAME }}</a></h1>
  11. {% if SITESUBTITLE %}
  12. <p class="text-muted">{{ SITESUBTITLE }}</p>
  13. {% endif %}
  14. {% if LINKS or (DISPLAY_PAGES_ON_MENU and pages) or ICONS %}
  15. <ul class="list-inline">
  16. {% for title, link in LINKS %}
  17. <li class="list-inline-item"><a href="{{ link }}" target="_blank">{{ title }}</a></li>
  18. {% endfor %}
  19. {% if DISPLAY_PAGES_ON_MENU %}
  20. {% for page in pages %}
  21. {% if LINKS and loop.first %}
  22. <li class="list-inline-item text-muted">|</li>
  23. {% endif %}
  24. <li class="list-inline-item"><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></li>
  25. {% endfor %}
  26. {% endif %}
  27. {% for icon, link in ICONS %}
  28. {% if (LINKS or (DISPLAY_PAGES_ON_MENU and pages)) and loop.first %}
  29. <li class=" list-inline-item text-muted">|</li>
  30. {% endif %}
  31. <li class="list-inline-item"><a class="fa fa-{{ icon }}" href="{{ link }}" target="_blank"></a></li>
  32. {% endfor %}
  33. </ul>
  34. {% endif %}
  35. </div>
  36. </div>