aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs/HTML_for_parentlinks_makes_theming_hard.mdwn
diff options
context:
space:
mode:
authorhttp://adam.shand.net/ <http://adam.shand.net/@web>2009-08-05 06:02:00 -0400
committerJoey Hess <joey@kitenet.net>2009-08-05 06:02:00 -0400
commit08d8c36a0bc6aa55df2df9341ddca42fc25f09a3 (patch)
treeb3fd585d7d911e2f2b17c7945c93bebce0f15f20 /doc/bugs/HTML_for_parentlinks_makes_theming_hard.mdwn
parent4a2a37e02e2a07de0d3c22265392776f4fdb7676 (diff)
downloadikiwiki-08d8c36a0bc6aa55df2df9341ddca42fc25f09a3.tar
ikiwiki-08d8c36a0bc6aa55df2df9341ddca42fc25f09a3.tar.gz
Diffstat (limited to 'doc/bugs/HTML_for_parentlinks_makes_theming_hard.mdwn')
-rw-r--r--doc/bugs/HTML_for_parentlinks_makes_theming_hard.mdwn42
1 files changed, 42 insertions, 0 deletions
diff --git a/doc/bugs/HTML_for_parentlinks_makes_theming_hard.mdwn b/doc/bugs/HTML_for_parentlinks_makes_theming_hard.mdwn
new file mode 100644
index 000000000..523042842
--- /dev/null
+++ b/doc/bugs/HTML_for_parentlinks_makes_theming_hard.mdwn
@@ -0,0 +1,42 @@
+I'm trying to make a pretty theme for ikiwiki and I'm making progress (or at least I think I am :-). However I've noticed an issue when it comes to theming. On the front page the wiki name is put inside the "title" span and on all the other pages, it's put in the "parentlinks" span. See here:
+
+From [my dev home page](http://adam.shand.net/iki-dev/):
+
+<code>
+&lt;div class="header">
+&lt;span>
+&lt;span class="parentlinks">
+
+&lt;/span>
+&lt;span class="title">
+adam.shand.net/iki-dev
+&lt;/span>
+&lt;/span>&lt;!--.header-->
+
+&lt;/div>
+</code>
+
+From a sub-page of [my dev home page](http://adam.shand.net/iki-dev/recipes/navajo_fry_bread/):
+
+<code>
+&lt;div class="header">
+&lt;span>
+&lt;span class="parentlinks">
+
+&lt;a href="../">adam.shand.net/iki-dev</a>/
+
+&lt;/span>
+&lt;span class="title">
+recipes
+&lt;/span>
+&lt;/span>&lt;!--.header-->
+
+&lt;/div>
+</code>
+
+I understand the logic behind doing this (on the front page it is the title as well as the name of the wiki) however if you want to do something different with the title of a page vs. the name of the wiki it makes things pretty tricky.
+
+I'll just modify the templates for my own site but I thought I'd report it as a bug in the hopes that it will be useful to others.
+
+Cheers,
+Adam.