A theme for pelican which mimics the look of LaTeX documents
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 regels
402 B

  1. {% if DEFAULT_PAGINATION %}
  2. <p class="paginator">
  3. {% if articles_page.has_previous() %}
  4. <a href="{{ SITEURL }}/{{ articles_previous_page.url }}">&laquo;</a>
  5. {% endif %}
  6. Page {{ articles_page.number }} / {{ articles_paginator.num_pages }}
  7. {% if articles_page.has_next() %}
  8. <a href="{{ SITEURL }}/{{ articles_next_page.url }}">&raquo;</a>
  9. {% endif %}
  10. </p>
  11. {% endif %}