diff options
Diffstat (limited to 'layouts/post')
-rw-r--r-- | layouts/post/single.html | 4 | ||||
-rw-r--r-- | layouts/post/summary.html | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/layouts/post/single.html b/layouts/post/single.html index fcda0dd..f19cb9b 100644 --- a/layouts/post/single.html +++ b/layouts/post/single.html @@ -53,14 +53,14 @@ <!-- Post Pagination --> <nav class="post-nav"> {{ with .NextInSection -}} - <a class="prev" href="{{ .URL }}"> + <a class="prev" href="{{ .RelPermalink }}"> <i class="iconfont icon-left"></i> <span class="prev-text nav-default">{{ .Title }}</span> <span class="prev-text nav-mobile">{{ T "prevPost" }}</span> </a> {{- end }} {{ with .PrevInSection -}} - <a class="next" href="{{ .URL }}"> + <a class="next" href="{{ .RelPermalink }}"> <span class="next-text nav-default">{{ .Title }}</span> <span class="next-text nav-mobile">{{ T "nextPost" }}</span> <i class="iconfont icon-right"></i> diff --git a/layouts/post/summary.html b/layouts/post/summary.html index c06e292..38c45f4 100644 --- a/layouts/post/summary.html +++ b/layouts/post/summary.html @@ -1,6 +1,6 @@ <article class="post"> <header class="post-header"> - <h1 class="post-title"><a class="post-link" href="{{ .URL }}">{{ .Title }}</a></h1> + <h1 class="post-title"><a class="post-link" href="{{ .RelPermalink }}">{{ .Title }}</a></h1> <div class="post-meta"> <span class="post-time"> {{ .Date.Format (.Site.Params.dateFormatToUse | default "2006-01-02") }} </span> {{ with .Params.categories -}} @@ -22,7 +22,7 @@ {{ .Summary }} </div> <div class="read-more"> - <a href="{{ .URL }}" class="read-more-link">{{ T "readMore" }}</a> + <a href="{{ .RelPermalink }}" class="read-more-link">{{ T "readMore" }}</a> </div> </div> </article> |