**WARNING:** Parameters marked with **{!}** must be escaped from HTML markup if you display them! ├── html │ ├── 403.php │ ├── 404.php │ ├── feed │ │ ├── item_page.php │ │ ├── item_post.php │ │ └── main.php │ ├── home.php │ ├── main.php │ ├── page │ │ ├── item.php │ │ ├── list.php │ │ └── main.php │ ├── pagination.php │ ├── post │ │ ├── item.php │ │ ├── list.php │ │ └── main.php │ ├── search │ │ ├── main.php │ │ └── result.php │ └── user │ ├── item.php │ ├── list.php │ └── main.php ├── lang │ ├── de.php │ └── en.php │ └── […] └── rsrc └── […] ## Global `html/*` The following variables are available in **each** other template file: * `$BLOGMETA['NAME']`**{!}**: Global available: The name of the blog * `$BLOGMETA['DESC']`**{!}**: Global available: The description of the blog * `$BLOGMETA['HOME']`**{!}**: Global available: The name of the start page of the blog * `$BLOGMETA['MAIL']`: Global available: The email address of the contact person * `$BLOGMETA['LANG']`: Global available: The two-letter language code for the content ## Main Template `html/main.php` Basic framework of the HTML document which contains the main content: * `$HEAD['NAME']`**{!}**: Contains the document name for the `