diff --git a/po/plume.pot b/po/plume.pot index c61456af..197db640 100644 --- a/po/plume.pot +++ b/po/plume.pot @@ -330,3 +330,9 @@ msgid "One article in this blog" msgid_plural "{{ count }} articles in this blog" msgstr[0] "" msgstr[1] "" + +msgid "Previous page" +msgstr "" + +msgid "Next page" +msgstr "" diff --git a/static/main.css b/static/main.css index d523d8cd..985081ea 100644 --- a/static/main.css +++ b/static/main.css @@ -540,3 +540,14 @@ form.new-post input[type="submit"]:hover { background: #DADADA; } min-height: 80%; } } + +/*== Pagination ==*/ +.pagination { + display: flex; + width: 100%; + justify-content: space-evenly; +} + +.pagination > * { + padding: 2em; +}