diff --git a/layouts/partials/previous-next-links.html b/layouts/partials/previous-next-links.html new file mode 100644 index 0000000000000000000000000000000000000000..5ff7a27426edc9696b2ef5d054f71c0340e4f9a6 --- /dev/null +++ b/layouts/partials/previous-next-links.html @@ -0,0 +1,25 @@ +{{if .Prev }} + + {{ partial "svg/ic_chevron_left_black_24px.svg" (dict "size" "30px") }} {{ .Prev.Params.name}} + +{{end}} + +{{if .Next }} + + {{ .Next.Params.name }} {{ partial "svg/ic_chevron_right_black_24px.svg" (dict "size" "30px") }} + +{{end}} + + +