Examples/Parameter: hlistattr (example 1)

From DynamicPageList3 Manual
Revision as of 08:35, 24 April 2022 by imported>FrozenPlum
Please do not edit this page unless you're wanting to edit the manual itself, it is an example included in the manual.

Example

This will select articles in Category:Countries in Africa or Category:Countries in Europe and orders them by category (which is used in combination with headingmode to put the category as the header). mode set as ordered causes the articles that belong in the categories to be numbered. The hlistattr adds attributes at the heading/top level; an ID is given, a CSS class is given to set the color orange, and the font size is set to 17 pixels. The entire list would appear orange, if no listattr was set; though listattr sets an ID to the ordered list and applies a blue CSS class (which also apepars on its list items). The itemattr sets an ID and style (italic) to list items.

{{#dpl:
|category    = Countries in Africa¦Countries in Europe
|ordermethod = category,pagetouched
|headingmode = definition
|mode        = ordered
|hlistattr   = id="dl-example" class="dpl-orange-background" style= "font-size:17px;"
|listattr    = id="ol-example" class="dpl-blue-background"
|itemattr    = id="li-example" style="font-style: italic;"
|count       = 2
}}

Result

{{#dpl: |category = Countries in Africa¦Countries in Europe |ordermethod = category,pagetouched |headingmode = definition |mode = ordered |hlistattr = id="dl-example" class="dpl-orange-background" style= "font-size:17px;" |listattr = id="ol-example" class="dpl-blue-background" |itemattr = id="li-example" style="font-style: italic;" |count = 2 }}