diff options
| -rw-r--r-- | _site_build/_includes/post_excerpt.html | 2 | ||||
| -rw-r--r-- | _site_build/_layouts/post.html | 4 | ||||
| -rw-r--r-- | _site_build/archives/index.html | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/_site_build/_includes/post_excerpt.html b/_site_build/_includes/post_excerpt.html index 1caf4d5..461cb55 100644 --- a/_site_build/_includes/post_excerpt.html +++ b/_site_build/_includes/post_excerpt.html @@ -1,6 +1,6 @@ <article class="excerpt"> <header> - <h1><a href="{{ post.url }}" target="_self" title="{{ post.title }}">{{ post.title }}</a></h1> + <h1><a href="{{ post.url }}" rel="bookmark" target="_self" title="{{ post.title }}">{{ post.title }}</a></h1> <time datetime="{{ post.date | date: '%Y-%m-%d' }}" pubdate>{{ post.date | date: '%A' }} {{ post.date | ordinalize }} {{ post.date | date: '%B, %Y' }}</time> </header> {{ post.content | truncate }} diff --git a/_site_build/_layouts/post.html b/_site_build/_layouts/post.html index f37fc0d..e45ca24 100644 --- a/_site_build/_layouts/post.html +++ b/_site_build/_layouts/post.html @@ -11,10 +11,10 @@ layout: default <nav> <ul> {% if page.previous.url %} - <li class="prev-article"><a href="{{ page.previous.url }}" target="_self" rel="prev" title="{{ page.previous.title }}">« {{ page.previous.title }}</a></li> + <li class="prev-article"><a href="{{ page.previous.url }}" target="_self" rel="prev bookmark" title="{{ page.previous.title }}">« {{ page.previous.title }}</a></li> {% endif %} {% if page.next.url %} - <li class="next-article"><a href="{{ page.next.url }}" target="_self" rel="next" title="{{ page.next.title }}">{{ page.next.title }} »</a></li> + <li class="next-article"><a href="{{ page.next.url }}" target="_self" rel="next bookmark" title="{{ page.next.title }}">{{ page.next.title }} »</a></li> {% endif %} </ul> </nav> diff --git a/_site_build/archives/index.html b/_site_build/archives/index.html index e09e2b0..721e66a 100644 --- a/_site_build/archives/index.html +++ b/_site_build/archives/index.html @@ -19,7 +19,7 @@ robots: follow, noindex, noodp, noydir {% endif %} {% endunless %} <li> - <time datetime="{{ post.date | date: '%Y-%m-%d' }}" pubdate>{{ post.date | date: '%b' }} {{ post.date | ordinalize }}</time> <a href="{{ post.url }}" target="_self" title="{{ post.title }}">{{ post.title }}</a> + <time datetime="{{ post.date | date: '%Y-%m-%d' }}" pubdate>{{ post.date | date: '%b' }} {{ post.date | ordinalize }}</time> <a href="{{ post.url }}" rel="bookmark" target="_self" title="{{ post.title }}">{{ post.title }}</a> </li> {% endfor %} </ol> |
