From 4e09a922dbc70d7dba24285d14cdd8e2cab6d22b Mon Sep 17 00:00:00 2001 From: Richard Bos Date: Tue, 27 Jul 2021 16:56:28 +0200 Subject: [PATCH] Prepend tag-line with: Read more about --- static/stylesheet/tag-cloud.css | 9 +++++++++ templates/article.html | 1 + 2 files changed, 10 insertions(+) create mode 100644 static/stylesheet/tag-cloud.css diff --git a/static/stylesheet/tag-cloud.css b/static/stylesheet/tag-cloud.css new file mode 100644 index 0000000..f4c9971 --- /dev/null +++ b/static/stylesheet/tag-cloud.css @@ -0,0 +1,9 @@ +.tag-cloud span { + padding-right: .4em; + font-size: 80%; +} + +.tag-cloud p { + margin-top: 4em; +} + diff --git a/templates/article.html b/templates/article.html index 44d3fe1..b54449c 100644 --- a/templates/article.html +++ b/templates/article.html @@ -52,6 +52,7 @@

{% if article.tags %} + {{ _('Read more about') }} {% for tag in article.tags %} {{ tag }} {% endfor %}