summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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.