diff options
author | Alan Pearce | 2017-06-23 13:29:22 +0200 |
---|---|---|
committer | Alan Pearce | 2017-06-23 13:29:22 +0200 |
commit | 2e1c3a6c247aa0d2851f76ab5bd79aed21553f4c (patch) | |
tree | 41093f8bd0fafaae8f1f6d313e8edcee124c20ef /layouts/partials/sidebar.html | |
parent | 6419404ed2d1f3093f56514d499aa1e79dece2c5 (diff) | |
download | hyde-2e1c3a6c247aa0d2851f76ab5bd79aed21553f4c.tar.lz hyde-2e1c3a6c247aa0d2851f76ab5bd79aed21553f4c.tar.zst hyde-2e1c3a6c247aa0d2851f76ab5bd79aed21553f4c.zip |
Move rel=me to image link
Diffstat (limited to 'layouts/partials/sidebar.html')
-rw-r--r-- | layouts/partials/sidebar.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/layouts/partials/sidebar.html b/layouts/partials/sidebar.html index e30802b..85a62d1 100644 --- a/layouts/partials/sidebar.html +++ b/layouts/partials/sidebar.html @@ -1,7 +1,7 @@ <aside class="sidebar container"> <header class="sidebar-about h-card vcard p-author" itemprop="author" itemscope itemtype="http://schema.org/Person"> {{ if (isset .Site.Author "image") }} - <a class="u-url u-uid" href="{{ .Site.BaseURL }}"> + <a class="u-url u-uid" rel="me" href="{{ .Site.BaseURL }}"> <img class="u-photo" src="{{ .Site.Author.image }}" width=128 height=128 /> </a> {{ end }} @@ -19,7 +19,7 @@ <nav> <ul class="sidebar-nav"> {{ range .Site.Menus.main }} - <li><a href="{{.URL}}" class="u-url url"{{ if eq .URL "/" }} rel="me"{{ end }} itemprop="url"> {{ .Name }} </a></li> + <li><a href="{{.URL}}" class="u-url url" itemprop="url"> {{ .Name }} </a></li> {{end}} </ul> </nav> |