From c7d9c335cdf9154763da05744dcc60b0151f18a9 Mon Sep 17 00:00:00 2001 From: Daniel Barber Date: Sat, 12 Oct 2019 21:45:57 -0400 Subject: [PATCH] Fix responsiveness --- layouts/partials/head.html | 1 + layouts/section/blog.html | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/layouts/partials/head.html b/layouts/partials/head.html index 5e8af574..b63f840d 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -1,4 +1,5 @@ + {{ block "title" . }} {{ .Site.Title }} diff --git a/layouts/section/blog.html b/layouts/section/blog.html index 11acde4f..09107b08 100644 --- a/layouts/section/blog.html +++ b/layouts/section/blog.html @@ -1,7 +1,7 @@ {{ define "main" }} <section class="blog-posts"> {{ range .Pages }} - <article> + <article class="post"> <h3><a href="{{.Permalink}}">{{.Title}}</a></h3> <p>{{.Summary}}</p> </article>