header.html 441 B

12345678910111213
  1. {% block book_header %}
  2. <div class="book-header" role="navigation">
  3. {% if glossary.path %}
  4. <a href="{{ ('/' + glossary.path)|resolveFile }}" class="btn pull-left" aria-label="{{ "GLOSSARY_OPEN"|t }}"><i class="fa fa-sort-alpha-asc"></i></a>
  5. {% endif %}
  6. <!-- Title -->
  7. <h1>
  8. <i class="fa fa-circle-o-notch fa-spin"></i>
  9. <a href="{{ "/"|resolveFile }}" >{{ page.title }}</a>
  10. </h1>
  11. </div>
  12. {% endblock %}