diff options
author | Alan Pearce | 2014-07-12 21:12:47 +0100 |
---|---|---|
committer | Alan Pearce | 2014-07-12 21:12:47 +0100 |
commit | 9bd89b4835e36a88438930e24de7ea06bda7ad7e (patch) | |
tree | a9445f381ef77f1159bd0c0f033b93767117dbc9 /layouts/_default/list.html | |
parent | 2c8a5016b0310da24689eae27d404d6c13727161 (diff) | |
download | hyde-9bd89b4835e36a88438930e24de7ea06bda7ad7e.tar.lz hyde-9bd89b4835e36a88438930e24de7ea06bda7ad7e.tar.zst hyde-9bd89b4835e36a88438930e24de7ea06bda7ad7e.zip |
Switch to relative permalinks where possible
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 72b23be..e80155e 100644 --- a/layouts/_default/list.html +++ b/layouts/_default/list.html @@ -4,7 +4,7 @@ <ul class="posts"> {{ range .Data.Pages }} <li> - <a href="{{ .Permalink }}">{{ .Title }}</a> + <a href="{{ .RelPermalink }}">{{ .Title }}</a> <time class="pull-right post-list" datetime="{{ .Date.Format "2006-01-02 15:04:05Z" }}">{{ .Date.Format "Monday, 2 January 2006" }}</time> <p class="summary">{{ .Summary }}</p> </li> |