summaryrefslogtreecommitdiff
path: root/_site_build
diff options
context:
space:
mode:
authordavidtsadler <davidtsadler@googlemail.com>2012-01-07 20:29:41 +0000
committerdavidtsadler <davidtsadler@googlemail.com>2012-01-07 20:29:41 +0000
commitf59e8e63993f4410839fa90ac5df859abb4015c8 (patch)
tree447732288abfcc8b3cd18a9bef10c80242d4b4b4 /_site_build
parent5da0b65e69a4a6550f589a27a60358b0ad2e15e7 (diff)
Add rel=bookmark
Diffstat (limited to '_site_build')
-rw-r--r--_site_build/_includes/post_excerpt.html2
-rw-r--r--_site_build/_layouts/post.html4
-rw-r--r--_site_build/archives/index.html2
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 }}">&laquo; {{ page.previous.title }}</a></li>
+ <li class="prev-article"><a href="{{ page.previous.url }}" target="_self" rel="prev bookmark" title="{{ page.previous.title }}">&laquo; {{ 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 }} &raquo;</a></li>
+ <li class="next-article"><a href="{{ page.next.url }}" target="_self" rel="next bookmark" title="{{ page.next.title }}">{{ page.next.title }} &raquo;</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>