diff --git a/templates/blog-page.html b/templates/blog-page.html index 73686a1..de16a17 100644 --- a/templates/blog-page.html +++ b/templates/blog-page.html @@ -2,7 +2,12 @@ {% block content %}
../{{ page.slug }}
- +{% if config.extra.date_format.post %} + {% set datefmt = config.extra.date_format.post %} +{% else %} + {% set datefmt = "%Y-%m-%dT%H:%M:%S%Z" %} +{% endif %} + {% if config.extra.author and config.extra.display_author == true %} {% endif %} diff --git a/templates/section.html b/templates/section.html index eaa5aa0..ba2561d 100644 --- a/templates/section.html +++ b/templates/section.html @@ -12,12 +12,17 @@ {% endif %} {% if paginator %} -
{% if paginator.previous %}   <{% endif %}   {{ paginator.current_index }} / {{ paginator.number_pagers }}   {% if paginator.next %}   {% endif %}
+
{% if paginator.previous %}   {% endif %}   {{ paginator.current_index }} / {{ paginator.number_pagers }}   {% if paginator.next %}   {% endif %}
{% endif %} {% endblock content %}