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

github.com/jpescador/hugo-future-imperfect.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Collins <thepatrickcollins@gmail.com>2017-11-13 03:29:57 +0300
committerGitHub <noreply@github.com>2017-11-13 03:29:57 +0300
commite90e70ea3f43698a3bf7d5bd09d830d3144bb67e (patch)
treebf9afb60185348720197d2e2271a280d299e58c8 /exampleSite
parenteed150512ae2d4389dd313407930c33baab60f85 (diff)
Bug: absURL to relURL (#83)
* AbsURL to relURL * Adjust BaseURL * baseURL to relURL * Permalink to RelPermalink
Diffstat (limited to 'exampleSite')
-rw-r--r--exampleSite/content/blog/goisforlovers.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/exampleSite/content/blog/goisforlovers.md b/exampleSite/content/blog/goisforlovers.md
index 2c8a8ab..56bdd85 100644
--- a/exampleSite/content/blog/goisforlovers.md
+++ b/exampleSite/content/blog/goisforlovers.md
@@ -239,7 +239,7 @@ instead of depending on the context.
```
{{ $title := .Site.Title }}
{{ range .Params.tags }}
-<li> <a href="{{ $baseurl }}/tags/{{ . | urlize }}">
+<li> <a href="/tags/{{ . | urlize }}">
{{ . }}</a> - {{ $title }} </li>
{{ end }}
```