Skip to content

Commit 243cc0e

Browse files
committed
fix(microformats): make author rel=me to validate
1 parent 7cd80b7 commit 243cc0e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

layouts/post.hbs

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
</div>
2121
<dl>
2222
<dt>Author:</dt>
23-
<dd class="p-author">{{ site.author }}</dd>
23+
<dd rel="author">{{ site.author }}</dd>
2424
<dt>Permalink URL:</dt>
2525
<dd>
2626
<a class="u-url" href="{{ site.url }}{{ path }}/">{{ site.url }}{{ path }}/</a>

layouts/status.hbs

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<time class="dt-published" pubdate itemprop="datePublished">{{ statusDate }}</time>
2323
</dd>
2424
<dt>Author:</dt>
25-
<dd class="p-author">{{ site.author }}</dd>
25+
<dd rel="author">{{ site.author }}</dd>
2626
<dt>Permalink URL:</dt>
2727
<dd>
2828
<a class="u-url" href="{{ site.url }}{{ path }}/">{{ site.url }}{{ path }}/</a>

partials/header.hbs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<header class="header h-card" role="banner">
22
<div class="h-card">
33
<h2>
4-
<a class="p-org u-url" href="https://blank.groundwork.rocks/" title="Link to home page">{{ site.title }}</a>
4+
<a class="p-org u-url" rel="me" href="https://blank.groundwork.rocks/" title="Link to home page">{{ site.title }}</a>
55
</h2>
66
<a href="/" title="Link to home page">
77
<img class="u-photo" src="/assets/images/logo.svg" alt="Groundwork logo">

0 commit comments

Comments
 (0)