summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2017-02-24 22:09:14 +0100
committerThomas Lange <code@nerdmind.de>2017-02-24 22:09:14 +0100
commit52fa7ae9722c42a309db68a6af80609dfe97f920 (patch)
tree455ff19aa412d9253fb95b95afe73693195b2dad
parentb256462d3380000421da046c71115629e7a76e29 (diff)
downloadwiki-52fa7ae9722c42a309db68a6af80609dfe97f920.tar.gz
wiki-52fa7ae9722c42a309db68a6af80609dfe97f920.tar.xz
wiki-52fa7ae9722c42a309db68a6af80609dfe97f920.zip
Forgotten things added.
-rw-r--r--Templates.md23
1 files changed, 19 insertions, 4 deletions
diff --git a/Templates.md b/Templates.md
index c066e7c..7ddc728 100644
--- a/Templates.md
+++ b/Templates.md
@@ -64,6 +64,9 @@ Represents a single post to display within the feed template.
## Template `html/page/item.php`
Represents a single page to display within the list template.
+* `$PAGE`: [See reference for `@PAGE`]
+* `$USER`: [See reference for `@USER`]
+
## Template `html/page/list.php`
Overview template which contains the site navigation and a list of page items to be displayed.
@@ -72,8 +75,6 @@ Overview template which contains the site navigation and a list of page items to
* `$PAGEINATION['LAST']`: Contains the last site number of the list navigation
* `$PAGEINATION['HTML']`: Contains the pageination template with the list navigation
-* `$PAGE`: [See reference for `@PAGE`]
-
## Template `html/page/main.php`
Main template for a single page.
@@ -85,6 +86,9 @@ Main template for a single page.
## Template `html/post/item.php`
Represents a single post to display within the list template.
+* `$POST`: [See reference for `@POST`]
+* `$USER`: [See reference for `@USER`]
+
## Template `html/post/list.php`
Overview template which contains the site navigation and a list of post items to be displayed.
@@ -93,8 +97,6 @@ Overview template which contains the site navigation and a list of post items to
* `$PAGEINATION['LAST']`: Contains the last site number of the list navigation
* `$PAGEINATION['HTML']`: Contains the pageination template with the list navigation
-* `$POST`: [See reference for `@POST`]
-
## Template `html/post/main.php`
Main template for a single post.
@@ -128,6 +130,19 @@ Result template with a list of posts and the formular to repeat the search.
* `$FORM['OPTIONS']['M']`: Contains a list of possible months to select
* `$FORM['OPTIONS']['Y']`: Contains a list of possible years to select
+## Template `html/user/item.php`
+Represents a single user to display within the list template.
+
+* `$USER`: [See reference for `@USER`]
+
+## Template `html/user/list.php`
+Overview template which contains the site navigation and a list of user items to be displayed.
+
+* `$LIST['USERS']`: Contains a list of user items for the current site
+* `$PAGEINATION['THIS']`: Contains the current site number of the list navigation
+* `$PAGEINATION['LAST']`: Contains the last site number of the list navigation
+* `$PAGEINATION['HTML']`: Contains the pageination template with the list navigation
+
## Template `html/user/main.php`
Main template for a single user.