Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/leonardofaria/bento.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeonardo Faria <leonardofaria@gmail.com>2020-11-03 06:49:27 +0300
committerLeonardo Faria <leonardofaria@gmail.com>2020-11-03 06:49:27 +0300
commit3bc1080f9dad8d291abb4bb1285bfdc918d4829e (patch)
treec654ff7624416a49162335b075e2657cc9bff8b3 /layouts/_default/archives.html
parentbbfcb2e2a67d3fd44913748a334ebe96cfeb07bc (diff)
Refactor typography; add Inter everywhere
Diffstat (limited to 'layouts/_default/archives.html')
-rw-r--r--layouts/_default/archives.html14
1 files changed, 8 insertions, 6 deletions
diff --git a/layouts/_default/archives.html b/layouts/_default/archives.html
index 2d7ea84..9b8182d 100644
--- a/layouts/_default/archives.html
+++ b/layouts/_default/archives.html
@@ -6,14 +6,16 @@
<main class="flex-1 max-w-3xl mt-32 mx-auto text-gray-700 w-full">
<div id="reading-progress-bar" role="presentation" class="fixed z-10 top-0 left-0 h-1 bg-gray-700"></div>
<article class="article">
- <h1 class="artitle__title"><a href="{{.Permalink}}">{{ .Title }}</a></h1>
+ <h1><a href="{{.Permalink}}" class="no-underline">{{ .Title }}</a></h1>
- I like to talk about:
- {{range $name, $taxonomy := .Site.Taxonomies.tags}} {{ $cnt := .Count }}
- {{ with $.Site.GetPage (printf "/tags/%s" $name) }}
- <a href={{ .RelPermalink }} title="All post with tag {{$name}} ({{$cnt}} posts)">{{$name}}</a>&nbsp;
+ <p class="intro">
+ I like to talk about:
+ {{range $name, $taxonomy := .Site.Taxonomies.tags}} {{ $cnt := .Count }}
+ {{ with $.Site.GetPage (printf "/tags/%s" $name) }}
+ <a href={{ .RelPermalink }} title="All post with tag {{$name}} ({{$cnt}} posts)" class="no-underline">{{$name}}</a>&nbsp;
+ {{end}}
{{end}}
- {{end}}
+ </p>
{{ range site.RegularPages.GroupByDate "2006" -}}
{{ partial "post-summary.html" . }}