diff --git a/default_environment/stylesheet/main.css b/default_environment/stylesheet/main.css index 903baa2..c2f88d1 100644 --- a/default_environment/stylesheet/main.css +++ b/default_environment/stylesheet/main.css @@ -85,6 +85,7 @@ body { max-width: var(--main-max-width); font-size: 1.2rem; line-height: 1.2; + padding-bottom: 8rem; /* A stand-alone blog post (not in a blog stream). */ .blog_post { @@ -95,6 +96,22 @@ body { .stream_divider { color: var(--stream-divider-color); } + + .stream_nav { + display: flex; + flex-direction: row; + align-items: center; + > a { + display: inline-block; + padding: 0.2rem 0.5rem; + font-weight: 700; + font-size: 1.5rem; + } + > .spacer { + display: inline-block; + flex: 1 1; + } + } } /* A blog post in a blog stream (for example, the homepage). */ diff --git a/default_environment/templates/html/blog_stream.dust b/default_environment/templates/html/blog_stream.dust index 694614c..a431d6e 100644 --- a/default_environment/templates/html/blog_stream.dust +++ b/default_environment/templates/html/blog_stream.dust @@ -24,8 +24,10 @@ {/.children} {#.stream_pagination} +
{?.older_link}Older{/.older_link} +
{?.newer_link}Newer{/.newer_link}
{/.stream_pagination}