diff --git a/assets/css/style.css b/assets/css/style.css index d35bcba..b21219a 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -29,6 +29,8 @@ div { img { border: 0; + max-width: 90%; + height: auto; } a { diff --git a/layouts/_default/single.html b/layouts/_default/single.html index 6f4d2fa..ce7f656 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -30,6 +30,22 @@ + {{ if .Params.series }} + {{ $name := index .Params.series 0 }} +
+

This is a post in the + {{$name}} series.
+ Other posts in this series:

+ + {{ $name := $name | urlize }} + {{ $series := index .Site.Taxonomies.series $name }} + + {{end}} -{{ end }} \ No newline at end of file +{{ end }}