renames p#paginator into div#paginator
diff --git a/static/css/style.less b/static/css/style.less
index d4fb339..250886b 100644
--- a/static/css/style.less
+++ b/static/css/style.less
@@ -159,7 +159,7 @@
}
}
- p#paginator {
+ div#paginator {
}
}
diff --git a/templates/modules/pagination.html b/templates/modules/pagination.html
index 6f20b0f..638fea7 100644
--- a/templates/modules/pagination.html
+++ b/templates/modules/pagination.html
@@ -1,5 +1,5 @@
{% if DEFAULT_PAGINATION %}
-<p id="paginator">
+<div id="paginator">
{% if articles_page.has_next() %}
<a href="{{ SITEURL }}/{{ page_name }}{{ articles_page.next_page_number() }}.html" class="button_accent">← Older Posts</a>
{% endif %}
@@ -11,5 +11,5 @@
<a href="{{ SITEURL }}/{{ page_name }}{{ articles_page.previous_page_number() }}.html" class="button_accent">Newer Posts →</a>
{% endif %}
{% endif %}
-</p>
+</div>
{% endif %}