diff options
author | Alan Pearce | 2017-06-23 13:22:08 +0200 |
---|---|---|
committer | Alan Pearce | 2017-06-23 13:22:08 +0200 |
commit | 57a032d9f3665033484471fd1e355e3b3caff641 (patch) | |
tree | c7b622c9a9ab5ab7ac8d9092543b615d1a6550fd /layouts/_default/single.html | |
parent | 80ecb4689b15c3260d83f57dafb81bd73bd32942 (diff) | |
parent | 987cab567c5fc9bed00bf11b8693b44d40564e5e (diff) | |
download | hyde-57a032d9f3665033484471fd1e355e3b3caff641.tar.lz hyde-57a032d9f3665033484471fd1e355e3b3caff641.tar.zst hyde-57a032d9f3665033484471fd1e355e3b3caff641.zip |
Merge remote-tracking branch 'alanpearce/master'
Diffstat (limited to 'layouts/_default/single.html')
-rw-r--r-- | layouts/_default/single.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/layouts/_default/single.html b/layouts/_default/single.html index 034cb26..26df731 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -3,7 +3,9 @@ <main class="content container" role="main"> <article class="post"> <header> - <h1 class="post-title p-name" itemprop="name">{{ .Title }}</h1> + <a class="u-url" href="{{ .Permalink | replaceRE "/$" "" }}"> + <h1 class="post-title p-name" itemprop="name">{{ .Title }}</h1> + </a> <time class="post-date dt-published" datetime="{{ .Date.Format "2006-01-02T15:04:05Z" }}" itemprop="datePublished">{{ .Date.Format "Monday, 2 January 2006" }}</time> </header> <main class="post-content e-content" itemprop="articleBody"> |