diff options
author | DSRKafuU | 2020-05-04 20:51:54 -0500 |
---|---|---|
committer | GitHub | 2020-05-04 20:51:54 -0500 |
commit | 11639966566927a4616748c71c7c708a63d9d2b1 (patch) | |
tree | e5cd1a7fc0de3d269a1326f17335c2fa3f138ec2 | |
parent | 2b1394012dc958624c9450e357b8c24ccffc95a3 (diff) | |
parent | 44ee76165c7d192ee6e35880ebf5a2bd4440f4e5 (diff) | |
download | hugo-theme-fuji-11639966566927a4616748c71c7c708a63d9d2b1.tar.gz hugo-theme-fuji-11639966566927a4616748c71c7c708a63d9d2b1.tar.bz2 hugo-theme-fuji-11639966566927a4616748c71c7c708a63d9d2b1.zip |
Merge pull request #15 from akgnah/master
Fix tag url when base url is /
-rw-r--r-- | layouts/partials/post-meta.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/partials/post-meta.html b/layouts/partials/post-meta.html index 7e5b47b..4864808 100644 --- a/layouts/partials/post-meta.html +++ b/layouts/partials/post-meta.html @@ -7,7 +7,7 @@ <span> {{ if .Params.tags }} {{ range .Params.tags }} - <a href="{{ $.Site.BaseURL }}/tags/{{ . | urlize }}/">{{ . }}</a> + <a href="/tags/{{ . | urlize }}/">{{ . }}</a> {{ end }} {{ else }} <span>{{ i18n "postMetaNoTag" }}</span> |