diff options
Diffstat (limited to 'layouts')
-rw-r--r-- | layouts/taxonomy/terms.html | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/layouts/taxonomy/terms.html b/layouts/taxonomy/terms.html index f2c0895..30ae287 100644 --- a/layouts/taxonomy/terms.html +++ b/layouts/taxonomy/terms.html @@ -29,18 +29,18 @@ {{ .Name }} ({{ .Pages | len }}) </a> </h4> - <ul class="list ph5"> + <ul class="list"> {{ range .Pages.ByDate }} - <li class="lh-copy stripe-dark ph1 pv2"> - {{ $dateFormat := .Site.Params.dateFormat | default ":date_medium" }} - <time - datetime="{{ .Date.Format "2006-01-02" }}" - class="f6 fw3 fr ml2" - > - <i class="far fa-calendar"></i> - {{ time.Format $dateFormat .Date }} - </time> - <a class="link dim color-inherit" href="{{ .RelPermalink }}"> + <li class="lh-copy grow stripe-dark pa2"> + <a class="link dim color-inherit db" href="{{ .RelPermalink }}"> + {{ $dateFormat := .Site.Params.dateFormat | default ":date_medium" }} + <time + datetime="{{ .Date.Format "2006-01-02" }}" + class="f6 fw3 fr ml2" + > + <i class="far fa-calendar"></i> + {{ time.Format $dateFormat .Date }} + </time> {{ .Title }} </a> </li> |