summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2017-07-23 11:32:12 +0200
committerThomas Lange <code@nerdmind.de>2017-07-23 11:32:12 +0200
commit86fcdd73201ae93ed362f587b6fdea1ec8d64ad5 (patch)
tree8af6a5226e3e25392ec13ef1a310e7a6a1128120
parentdce0e59f93a9c7c996b71265c093c177979c8220 (diff)
downloadwiki-86fcdd73201ae93ed362f587b6fdea1ec8d64ad5.tar.gz
wiki-86fcdd73201ae93ed362f587b6fdea1ec8d64ad5.tar.xz
wiki-86fcdd73201ae93ed362f587b6fdea1ec8d64ad5.zip
Spelling mistakes fixed.
-rw-r--r--Templates.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/Templates.md b/Templates.md
index e58add6..d0a4529 100644
--- a/Templates.md
+++ b/Templates.md
@@ -54,7 +54,7 @@ Basic framework of the HTML document which contains the main content:
This is the default startpage template which contains a list with the last posts.
* `$LIST['POSTS']`: Contains a list of post items for the home site
-* `$PAGEINATION['HTML']`: Contains the pageination template with the list navigation
+* `$PAGINATION['HTML']`: Contains the pagination template with the list navigation
## Page List Template `html/page/list.php`
Overview template which contains the site navigation and a list of page items to be displayed.
@@ -62,7 +62,7 @@ Overview template which contains the site navigation and a list of page items to
* `$LIST['PAGES']`: Contains a list of page items for the current site
* `$PAGINATION['THIS']`: Contains the current site number of the list navigation
* `$PAGINATION['LAST']`: Contains the last site number of the list navigation
-* `$PAGINATION['HTML']`: Contains the pageination template with the list navigation
+* `$PAGINATION['HTML']`: Contains the pagination template with the list navigation
## Post List Template `html/post/list.php`
Overview template which contains the site navigation and a list of post items to be displayed.
@@ -70,7 +70,7 @@ Overview template which contains the site navigation and a list of post items to
* `$LIST['POSTS']`: Contains a list of post items for the current site
* `$PAGINATION['THIS']`: Contains the current site number of the list navigation
* `$PAGINATION['LAST']`: Contains the last site number of the list navigation
-* `$PAGINATION['HTML']`: Contains the pageination template with the list navigation
+* `$PAGINATION['HTML']`: Contains the pagination template with the list navigation
## User List Template `html/user/list.php`
Overview template which contains the site navigation and a list of user items to be displayed.
@@ -78,7 +78,7 @@ Overview template which contains the site navigation and a list of user items to
* `$LIST['USERS']`: Contains a list of user items for the current site
* `$PAGINATION['THIS']`: Contains the current site number of the list navigation
* `$PAGINATION['LAST']`: Contains the last site number of the list navigation
-* `$PAGINATION['HTML']`: Contains the pageination template with the list navigation
+* `$PAGINATION['HTML']`: Contains the pagination template with the list navigation
## Page Item Template `html/page/item.php`
Represents a single page to display within the list template.