This page contains “templates” for PmWiki’s (:pagelist:)
directive. The Site.LocalTemplates page can be created and used to store pagelist templates that are local to a site.
See also: PageLists, Page Variables, Conditional Markup, and Cookbook:PagelistTemplateSamples.
Use with page variables:
= current item < previous item > next item
Conditionals used to structure pagelist output:
(:if equal {<$Group}:)
At beginning of list(:if equal {>$Group}:)
At end of list(:if ! equal {=$Group} {<$Group}:)
First item in group(:if ! equal {=$Group} {>$Group}:)
Last item in group
The default template for pagelists when fmt=
isn’t specified.
[[#default]] (:if ! equal {=$Group} {<$Group}:) :[[{=$Group}/]] /: (:if:) : :[[{=$Group}/{=$Name}]] [[#defaultend]]
Display pages by group/name.
[[#bygroup]] (:if ! equal {=$Group} {<$Group}:) :[[{=$Group}/]] /: (:if:) : :[[{=$Group}/{=$Name}]] [[#bygroupend]]
A simple bullet list of page names.
[[#simple]] * [[{=$FullName}]] [[#simpleend]]
A simple bullet list of page titles. Use order=title
to have them sorted by title (the default sort is by name).
[[#title]] * [[{=$FullName}|+]] [[#titleend]]
A bullet list of groups.
[[#group]] (:if ! equal {=$Group} {<$Group}:) * [[{=$Group}/]] [[#groupend]]
Concatenate the text of pages in the list. (Note, this can be an expensive operation!)
[[#include]] (:include {=$FullName} self=0:) [[#includeend]]
Include just the #faq sections from pages in the list. (This can also be expensive,
especially if the list includes pages that don’t have the [[#faq]]
anchor!)
[[#includefaq]] !![[{=$FullName}|+]] >>faq<< (:include {=$FullName}#faq#faqend self=0:) >><< [[#includefaqend]]
List pages and append the page’s description if it exists.
[[#description]] *[[{=$FullName}|+]] (:if ! equal {=$Description} '':) ->'-''description:'' {=$Description}-' (:if:) [[#descriptionend]]
Simple bullet list of page names, without the Group name.
[[#simplename]] * [[({=$Group}/){=$Name}]] [[#simplenameend]]