-
Post footer padding
Added padding to the top.
In /layouts/partials/properties.html the first line was altered to the following:
<div class="flex properties__row properties" style="padding-top:1em;">
-
Fixed code overflow
In the theme’s /static/css/md.css everything below
/* code blocks */
was altered to the following: -
fixed pagination
in the theme’s layouts/_default/list.html
{{ range .Pages }}
was changed to{{ range (.Paginate .RegularPagesRecursive).Pages }}
i copied this from hugo docs’s pagination page