summaryrefslogtreecommitdiff
path: root/templates/page.tmpl
AgeCommit message (Collapse)Author
2010-05-05bugfixJoey Hess
2010-05-05rename ispage variableJoey Hess
2010-05-05add NEWS about template changeJoey Hess
2010-05-05consistently drop NAME= in templatesJoey Hess
also add template syntax smoke test
2010-05-05allow search form visibility to be controlled on the templateJoey Hess
hide extrafooter from misctemplate display per default
2010-05-05on second thought, remove FOOTER variableJoey Hess
We always want a footer, just not a pagefooter when doing misctemplate.
2010-05-05add the <base> setting as in misc.tmpl; only ever do it if not ispageJoey Hess
Also, add FOOTER, to allow disabling the footer.
2010-05-03Add ACTIONS variable to page.tmpl, which allows plugins to add arbitrary ↵Joey Hess
links to the action bar without modifying the template further. (COMMENTSLINK and DISCUSSIONLINK could be folded into this, but are kept separate for now to avoid breaking modified templates.)
2010-05-02improve semantic markupJoey Hess
Now the toplevel layout is: <article> <section><header><nav></section> <aside>sidebar</aside> <section>content</section> <section>comments</section> <footer> </article> And I managed to preserve all CSS ids and names in their prior structure, so CSS should not need changed.
2010-05-02use html5 semantic markup in page.tmplJoey Hess
This is a first pass, it avoids needing to change style.css except where it refers to tag types. This goes a bit off the rails at the pageheader with its nested header. Semantically, there should be an article around the whole page header, content, and footer. Just as there will be an article around a whole comment or inlined page header, content, and footer. But that will mean changing the css that currently refers to pageheader to refer to the enclosing article instead.
2010-05-01html5 optionJoey Hess
* Ikiwiki can be configured to generate html5 instead of the default xhtml 1.0. The html5 output mode is experimental, not yet fully standards compliant, and will be subject to rapid change.
2010-04-15CSS and templates for sidebar changed to use a class, not an id.Joey Hess
Multiple sidebars should be possible; also, I want to add a sidebar template.
2010-03-31page.tmpl: Add Cache-Control must-revalidate to ensure that users ↵Joey Hess
(especially of Firefox) see fresh page content. Since Firefox version 3, it's done aggressive caching of visited pages, and does not, by default, check if the cached content is still valid when reloading or revisiting a page. By default, Firefox seems to not re-contact the web server at all. Compare with eg, Epiphany and Chromium, which appear to always check, and get back a 304 when the page is unchanged. This header makes Firefox do the right thing, at least for html files. It still over-caches if css, javascript, images, etc, are changed.
2009-11-09typoJoey Hess
2009-11-09localstyle: New plugin, allows overrding the toplevel local.css with one ↵Joey Hess
that is closer to a page. I chose not to have it override style.css, because style.css is not really intended to be edited; the one from the underlay is intended to be used as a base that local.css overrides. I chose to use a plugin rather than changing the default behavior, both because I didn't want to have to worry about possibly breaking backwards compatability (though this seems unlikely), and because it seemed cleaner to not include style template parameters in the main page template code. I suppose someone might want a way to not override the toplevel local.css, but instead include it as well as foo/local.css. Probably the best way to do that would be to have foo/local.css @import ../local.css (modulo browser compatability issues). Alternatively, edit page.tmpl to always include the toplevel local.css, or swap out this plugin for another one.
2009-08-15further otherlanguages list stylingJoey Hess
2009-07-26getsource: in the default template, just say "Source"Simon McVittie
All the other actions are single words (apart from RecentChanges), and are nouns (apart from Edit); saying "Source" is consistent with "History", for instance.
2009-07-26Add getsource pluginWill Uther
2009-03-28page.tmpl: use OTHERLANGUAGES and PERCENTTRANSLATEDintrigeri
Signed-off-by: intrigeri <intrigeri@boum.org>
2009-01-07repolist: New plugin to support the rel=vcs-* microformat.Joey Hess
* repolist: New plugin to support the rel=vcs-* microformat. * goodstuff: Include repolist by default. (But it does nothing until configured with the repository locations.)
2008-12-20comments: Rename COMMENTURL to ADDCOMMENTURL to avoid confusion with ↵Simon McVittie
COMMENTAUTHORURL Also refactor page.tmpl to use if/else rather than unless/if.
2008-12-19replace discussion links on pages with comments linkJoey Hess
The thinking here is that having both a Discussion page and comments for the same page is redundant, and certianly not what you want if you enable comments for a page. At first I considered making configurable via pagespec what pages got discussion links. But that would mean testing a new pagespec for every page, and a redundant config setting to keep in sync. So intead, take a lead from my previous change to make inlined pages have a comments link, and change the discussion link at the top of regular pages to link to their comments. (Implementation is a bit optimised to avoid redundant pagespec checking.)
2008-12-17add Comments link when displaying a page inlineJoey Hess
This link will supplant the usual Discussion link for pages that have comments enabled.
2008-12-11page.tmpl: optionally include "add comment" linkSimon McVittie
2008-12-11Add comments to page.tmplSimon McVittie
2008-10-19fix relativedate timezone inclusionJoey Hess
The machine parseable date needs to include a timezone. Also, simplified the interface for date display.
2008-10-17relativedate: New javascript-alicious plugin that makes all dates display ↵Joey Hess
relative, in a very nice way, if I say so myself.
2008-07-15Oops, add missing </span>Simon McVittie
2008-07-15More CSS hooks for page.tmpl.Simon McVittie
I notice madduck.net already has a similar change :-)
2008-07-13Add more stylesheet hooks to the page templateSimon McVittie
* Wrap header stuff, including actions, in <div class="pageheader"> (there is already a class="header", which is a subset of this, so using id="header" would be confusing) * Add class="pagefooter" to the existing <div id="footer">, for symmetry
2008-06-21Add support for the universal edit buttonJoey Hess
<http://universaleditbutton.org/> Not forcing a rebuild on upgrade just for this.
2008-05-28Add rel=nofollow to edit links. This may prevent some spiders from pounding ↵Joey Hess
on the cgi following edit links.
2008-02-09* Page templates can now use CTIME to show when the page was created.Joey Hess
2007-11-08Add xmlns attribute on html element in templates; pages can now validate.Josh Triplett
2007-09-20* Fix copyright and licence styling.joey
2007-09-15basic styling for license and copyrightjoey
2007-09-14* meta: Support license and copyright information. The information willjoey
be shown in the page footer. HTML will also be inserted that should support the rel=license microformat as well as the HTML spec's rel=copyright.
2007-05-11* Make all templates have a footer div to ease themeing. Required templatejoey
and style sheet updates, and unless you're using customised versions, you'll want to rebuild wikis on upgrade to this version to avoid inconsistencies. * Allow WIKINAME to to used in footers, as an example of something to put there.
2007-04-26more footer improvementsjoey
2007-04-26* Move the footer div to enclose tags and links too.joey
* More style sheet updates, remove the hack that used the tags div to create the footer border.
2007-04-18* Minor template improvements by Alessandro.joey
2007-04-06use popup balloon for more backlinks, rather than expanding on hover, sincejoey
in some cases it's not possible to move the mouse over the more backlinks using the old method
2007-04-06* Reorder the icon in the template above the stylesheets, to avoid iconjoey
flashing during page load.
2007-03-31* Hide excess backlinks and expand using CSS trick; control quantiy viajoey
the numbacklinks setting.
2007-03-21the real bug turned out to be in the meta pluginjoey
2007-03-21forgot to revert thisjoey
2007-03-21* Fix a few bugs around page titles containing html. The worst of thesejoey
is an actual security hole as it allows insertion of html into the title element of a page, which is not processed by the htmlscrubber.
2006-12-28Changes from StefanoZacchiroli:joey
- Use div for inlinepage actions, not a span - Add an enclosing "trailer" div Also, change pageinfo span into a div, since it now can include <p>
2006-12-23* Add mirrorlist plugin.joey
2006-10-08* Atom feed support based on a patch by Clint Adams.joey
* Add feeds=no option to inline preprocessor directive to turn off all types of feeds. feeds=rss will still work, and feeds=atom was also added, for fine control. * $IkiWiki::version now holds the program version, and is accessible to plugins.