I do not want the link to rel as 'bookmark'
diff --git a/templates/article.html b/templates/article.html
index e33317d..627623c 100644
--- a/templates/article.html
+++ b/templates/article.html
@@ -12,7 +12,7 @@
{% block content %}
<article>
<div id="article_title">
- <h3><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark">{{ article.title }}</a></h3>
+ <h3><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h3>
</div>
<div id="article_text">
{{ article.content }}
diff --git a/templates/page.html b/templates/page.html
index e0ab96e..d2fd6c4 100644
--- a/templates/page.html
+++ b/templates/page.html
@@ -8,7 +8,7 @@
{% block content %}
<article>
<div id="article_title">
- <h3><a href="{{ SITEURL }}/{{ page.url }}" rel="bookmark">{{ page.title }}</a></h3>
+ <h3><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></h3>
</div>
<div id="article_text">
{{ page.content }}