diff options
author | Matt Kohls <mattkohls13@gmail.com> | 2020-01-27 01:01:55 -0500 |
---|---|---|
committer | Matt Kohls <mattkohls13@gmail.com> | 2020-01-27 01:01:55 -0500 |
commit | 241bad276058bfe617788a3d70b559a642f085e1 (patch) | |
tree | 994e3421e8b9dc94407dfd30f46595d67e6c3db9 /layouts/_default/list.html | |
parent | c9e1a414d95c5c5061a4743147a4dd4d37070c59 (diff) | |
download | simplesource-241bad276058bfe617788a3d70b559a642f085e1.tar.gz simplesource-241bad276058bfe617788a3d70b559a642f085e1.tar.bz2 simplesource-241bad276058bfe617788a3d70b559a642f085e1.zip |
Posts now show tags, removing .URL (depreciated)
Diffstat (limited to 'layouts/_default/list.html')
-rw-r--r-- | layouts/_default/list.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/_default/list.html b/layouts/_default/list.html index 249ea3d..d1ed05f 100644 --- a/layouts/_default/list.html +++ b/layouts/_default/list.html @@ -16,7 +16,7 @@ <ul> {{ range (where .Data.Pages "Section" "!=" "") }} <li>{{ .Date.Format "Jan 2nd, 2006" }} - <a href="{{ .URL }}">{{ .Title | markdownify }}</a> + <a href="{{ .RelPermalink }}">{{ .Title | markdownify }}</a> </li> {{ end }} </ul> |