diff options
author | Jan Raasch <jan@janraasch.com> | 2020-10-01 16:12:16 +0200 |
---|---|---|
committer | Jan Raasch <jan@janraasch.com> | 2020-10-01 16:12:16 +0200 |
commit | 6e2f054d42ecb59b37afcf2069f0a3af550e6638 (patch) | |
tree | 00b59b2181e67182e63dd95a2c02faabc248820e /layouts/_default | |
parent | f6a67927cdaa7a296003ff88e8f15e4bafed94ff (diff) | |
download | hugo-bearcub-6e2f054d42ecb59b37afcf2069f0a3af550e6638.tar.gz hugo-bearcub-6e2f054d42ecb59b37afcf2069f0a3af550e6638.tar.bz2 |
fix: styling of ul.blog-posts
see 0c3efa6
Diffstat (limited to 'layouts/_default')
-rw-r--r-- | layouts/_default/list.html | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/layouts/_default/list.html b/layouts/_default/list.html index bd3c972..2545d9a 100644 --- a/layouts/_default/list.html +++ b/layouts/_default/list.html @@ -1,23 +1,4 @@ {{ define "main" }} -<style> - ul { - list-style-type: none; - padding: unset; - } - - li { - display: flex; - } - - li span { - flex: 0 0 130px; - } - - li a:visited { - color: #6532dc; - } - -</style> <content> {{ if .Data.Singular }} <h3 style="margin-bottom:0">Filtering for "{{ .Title }}"</h3> @@ -25,7 +6,7 @@ <a href="{{ "/blog" | relURL }}">Remove filter</a> </small> {{ end }} - <ul> + <ul class="blog-posts"> {{ range .Pages }} <li> <span> |