summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorp4bl0 <r@uzy.me>2011-05-31 17:06:58 +0200
committerp4bl0 <r@uzy.me>2011-05-31 17:06:58 +0200
commit5dfb982bdccbcf548b14282660322c07b12a6323 (patch)
tree2263f4d30c40589a21111fd86aa735d81c2de2cc
parent5154b86f6e9938b74f947de4bc2282ff56aec348 (diff)
added titles to previous/next links in default template
-rw-r--r--default-files/bottom.html6
-rw-r--r--default-files/top.html6
2 files changed, 8 insertions, 4 deletions
diff --git a/default-files/bottom.html b/default-files/bottom.html
index 5e0c9fe..a67a63b 100644
--- a/default-files/bottom.html
+++ b/default-files/bottom.html
@@ -3,12 +3,14 @@
<ul class="nav">
<?fugitive ifset:article_previous_file ?>
<li>
- <a href="<?fugitive article_previous_file ?>.html">« previous</a>
+ <a href="<?fugitive article_previous_file ?>.html"
+ title="<?fugitive article_previous_title ?>">« previous</a>
</li>
<?fugitive endifset:article_previous_file ?>
<?fugitive ifset:article_next_file ?>
<li>
- <a href="<?fugitive article_next_file ?>.html">next »</a>
+ <a href="<?fugitive article_next_file ?>.html"
+ title="<?fugitive article_next_title ?>">next »</a>
</li>
<?fugitive endifset:article_next_file ?>
</ul>
diff --git a/default-files/top.html b/default-files/top.html
index 21dc654..dd7d2c0 100644
--- a/default-files/top.html
+++ b/default-files/top.html
@@ -27,12 +27,14 @@
<ul class="nav">
<?fugitive ifset:article_previous_file ?>
<li>
- <a href="<?fugitive article_previous_file ?>.html">« previous</a>
+ <a href="<?fugitive article_previous_file ?>.html"
+ title="<?fugitive article_previous_title ?>">« previous</a>
</li>
<?fugitive endifset:article_previous_file ?>
<?fugitive ifset:article_next_file ?>
<li>
- <a href="<?fugitive article_next_file ?>.html">next »</a>
+ <a href="<?fugitive article_next_file ?>.html"
+ title="<?fugitive article_next_title ?>">next »</a>
</li>
<?fugitive endifset:article_next_file ?>
</ul>