Add missing permalink support to archivepage and titlepage templates.
authorJoey Hess <joey@gnu.kitenet.net>
Fri, 10 Apr 2009 22:02:03 +0000 (18:02 -0400)
committerJoey Hess <joey@gnu.kitenet.net>
Fri, 10 Apr 2009 22:02:03 +0000 (18:02 -0400)
debian/changelog
templates/archivepage.tmpl
templates/titlepage.tmpl

index bbc7e6f136df7c661740e4c34a84e27d168757f6..d9dcc95e6f4a3628db05d3a6771d4dcf401a6ea0 100644 (file)
@@ -9,6 +9,7 @@ ikiwiki (3.10) UNRELEASED; urgency=low
     - Petr Ročkai fixed rcs_recentchanges.
     - Sven M. Hallberg merged the above and added missing features.
   * Add missing newline to Confirm Password prompt.
+  * Add missing permalink support to archivepage and titlepage templates.
 
  -- Joey Hess <joeyh@debian.org>  Sat, 04 Apr 2009 17:47:36 -0400
 
index 6bc789dfb29cfe241055ac51c4c392df6a6a50a4..63f7165449070ad01dddd5b7d8bffd3550a0e16f 100644 (file)
@@ -1,5 +1,9 @@
 <p>
+<TMPL_IF NAME="PERMALINK">
+<a href="<TMPL_VAR PERMALINK>"><TMPL_VAR TITLE></a>
+<TMPL_ELSE>
 <a href="<TMPL_VAR PAGEURL>"><TMPL_VAR TITLE></a><br />
+</TMPL_IF>
 <i>
 Posted <TMPL_VAR CTIME>
 </i>
index f5cd5bc53e69de301886902e25428cd2ab2c9b94..8a11e693ebfe08602a003f01bda55ff8dec316bf 100644 (file)
@@ -1 +1,7 @@
-<p><a href="<TMPL_VAR PAGEURL>"><TMPL_VAR TITLE></a></p>
+<p>
+<TMPL_IF NAME="PERMALINK">
+<a href="<TMPL_VAR PERMALINK>"><TMPL_VAR TITLE></a>
+<TMPL_ELSE>
+<a href="<TMPL_VAR PAGEURL>"><TMPL_VAR TITLE></a>
+</TMPL_IF>
+</p>