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/index.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/index.html')
-rw-r--r-- | layouts/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/index.html b/layouts/index.html index e0c9263..be384db 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -19,7 +19,7 @@ <ul> {{ range where .Site.RegularPages "Section" "posts" }} <li>{{ .Date.Format "January 2, 2006" }} - <a href="{{ .URL }}">{{ .Title | markdownify }}</a> + <a href="{{ .RelPermalink }}">{{ .Title | markdownify }}</a> </li> {{ end }} </ul> |