2 username="http://jmtd.livejournal.com/"
4 subject="override/edit `page.tmpl`"
5 date="2011-10-30T21:22:29Z"
7 I'm looking for a way to change the RecentChanges, Preferences, Branchable, Comment menu items from my wiki page. I can see that the value for these items are set in template variables. Is there a way I can change these variables? If so can you tell me how?
13 > You need to define a `templatedir` and put a copy of your current version of ikiwiki's `page.tmpl` file into that directory. Then, edit around line 62 or thereabouts, e.g.
15 <li><a href=\"<TMPL_VAR EDITURL>\" rel=\"nofollow\">Edit</a></li>
17 <TMPL_IF RECENTCHANGESURL>
18 -<li><a href=\"<TMPL_VAR RECENTCHANGESURL>\">RecentChanges</a></li>
19 +<li><a href=\"<TMPL_VAR RECENTCHANGESURL>\">Recent Changes</a></li>
22 -<li><a href=\"<TMPL_VAR HISTORYURL>\">History</a></li>
23 +<li><a href=\"<TMPL_VAR HISTORYURL>\">Site history</a></li>
25 <TMPL_IF GETSOURCEURL>
26 -<li><a href=\"<TMPL_VAR GETSOURCEURL>\">Source</a></li>
27 +<li><a href=\"<TMPL_VAR GETSOURCEURL>\">View Source</a></li>
30 -<li><a href=\"<TMPL_VAR PREFSURL>\">Preferences</a></li>
31 +<li><a href=\"<TMPL_VAR PREFSURL>\">Your Preferences</a></li>