summaryrefslogtreecommitdiff
path: root/layouts/posts/list.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/posts/list.html')
-rw-r--r--layouts/posts/list.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/layouts/posts/list.html b/layouts/posts/list.html
index 67b770d..4756d74 100644
--- a/layouts/posts/list.html
+++ b/layouts/posts/list.html
@@ -3,7 +3,7 @@
{{ range sort .Paginator.Pages }}
<article>
<h2>
- <a href="{{ .Permalink }}">{{ .Title }}</a>
+ <a href="{{ .RelPermalink }}">{{ .Title }}</a>
</h2>
<h5>
<strong>{{ .Date.Format "January 2, 2006" }}</strong>
@@ -11,7 +11,7 @@
<p class="markdown">
{{- .Summary -}}
{{ if .Truncated }}
- <a href="{{ .Permalink }}">...</a>
+ <a href="{{ .RelPermalink }}">...</a>
{{ end }}
</p>
</article>