diff options
author | Alex Shpak <alex-shpak@users.noreply.github.com> | 2020-02-10 22:24:36 +0100 |
---|---|---|
committer | Alex Shpak <alex-shpak@users.noreply.github.com> | 2020-02-10 22:24:36 +0100 |
commit | a23d848db276ec33534115bd9a9c02171b1bd893 (patch) | |
tree | 5fed1526206b305266091196809d4aefd01bb774 /layouts/partials/docs/taxonomy.html | |
parent | a33bb33f189a565c848819181b1b87e66d020c58 (diff) |
#141, Add page counters to taxonomy side menu
Diffstat (limited to 'layouts/partials/docs/taxonomy.html')
-rw-r--r-- | layouts/partials/docs/taxonomy.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/layouts/partials/docs/taxonomy.html b/layouts/partials/docs/taxonomy.html index 2ebeb82..63ef315 100644 --- a/layouts/partials/docs/taxonomy.html +++ b/layouts/partials/docs/taxonomy.html @@ -6,8 +6,9 @@ <strong>{{ .Title | title }}</strong> <ul> {{ range .Pages }} - <li> + <li class="flex justify-between"> <a href="{{ .RelPermalink }}">{{ .Title }}</a> + <span>{{ len .Pages }}</span> </li> {{ end }} </ul> |