Go to the first, previous, next, last section, table of contents.
Default template for display of date catalog nodes.
Here is an example template:
<html>
<body bgcolor=#ffffff>
<title>Date catalog</title>
<!-- start years -->
<a href=_YEARLINK_>_YEARFORMATED_</a> (_COUNT_)
<blockquote>
<!-- start months -->
<!-- params format => '%M' -->
<a href=_MONTHLINK_>_MONTHFORMATED_</a> (_COUNT_)
<ul>
<!-- start days -->
<!-- params format => '%W, %d' -->
<li> <a href=_DAYLINK_>_DAYFORMATED_</a> (_COUNT_)
<!-- end days -->
</ul>
<!-- end months -->
</blockquote>
<!-- end years -->
<!-- start records -->
Records
<!-- start entry -->
<p> <table border=1><tr>_DEFAULTROW_</tr></table>
<!-- end entry -->
<!-- start pager -->
Number of pages _MAXPAGES_
<p>
_PAGES_
<!-- end pager -->
<!-- end records -->
</html>
- `Parts'
-
The months, days, records and pager
can be omitted, if appropriate.
- `years'
-
Repeated for each year for which there is at least one record
in the period involved.
- `months'
-
Repeated for each month for which there is at least one record
within the current year.
- `days'
-
Repeated for each day for which there is at least one record
within the current month of the current year.
- `records'
-
This part is included only if there is at least one record to display.
It can be omitted if you only want to display dates and not records.
The records displayed are extracted from the table associated with the
current catalog.
The inner parts of the records part follows the rules described
in Record list part, See section Record list part.
A pager may also be included, See section Multipage results template.
- `Date format'
-
The years, months and days parts can contain
a date format parameter. The form of the date format parameter is :
<!-- params format => '<MySQL date format>' -->
The MySQL date format string can be any format acceptable for the
date_format function of MySQL. See the MySQL documentation for more
information.
- `Tags'
-
- `_COUNT_'
-
The total number of records for the year (in years part), the
month (in months part) or the day (in days part).
- `_YEARLINK_'
-
A link to display only the period from January 1st 00:00 to December 31 23:59
of the current year.
- `_YEARFORMATED_'
-
The current year formated according to the date format specified (see above).
If no date format is specified the year is formated with the string %Y.
- `_MONTHLINK_'
-
A link to display only the period from the first day current month 00:00h
to last day of the month 23:59h.
- `_MONTHFORMATED_'
-
The current month formated according to the date format specified (see above).
If no date format is specified the month is formated with the string
%M %Y.
- `_DAYLINK_'
-
A link to display only the period from the current day 00:00h
to 23:59h.
- `_DAYFORMATED_'
-
The current day formated according to the date format specified (see above).
If no date format is specified the day is formated with the string
%d %M %Y.
Go to the first, previous, next, last section, table of contents.