ExpressionEngine Docs

Template Overview

What is a Template?

Templates can be considered as a single page of your site, but they’re much more than that. In ExpressionEngine, a template can be any of the following:

Because a Template is just a container that outputs information, you can create Templates for any type of data you need to present (RSS, CSS, HTML, XML, etc.).

Templates can also be a smaller component of your page. Through the use of the Embed Tag you can insert a Template into another Template.

How They Work

Templates are organized into Template Groups. A Template Group is analogous to a folder on your server.

In ExpressionEngine, a URL always contains the following structure, which allows a Template Group and a specific Template to be shown:

https://example.com/template_group/template

In addition to HTML and other markup, templates usually contain ExpressionEngine Tags, which allows information to be served dynamically.

Creating & Editing Templates

Templates can be created and edited in the Developer -> Templates area of your Control Panel.

Templates List

You start off by creating a template group. During creation you will have the option to duplicate an existing group with all of its templates. You can also select the roles that will have editing permissions for templates in this group.

Then, create individual templates. You can duplicate an existing template, or create a blank one. If necessary, change the template type from “Webpage” to the type that you need (RSS Page, CSS, JavaScript, Static, XML)

Existing templates can be edited with the built-in editor, which provides intelligent syntax highlighting.

Tip: The font size in the template editor can be adjusted with a configuration override.

You can also edit template preferences and set front-end access permissions for the template.

Template Editor

Saving templates as files

Template Groups, Templates, Global Variables, and Template Partials are always saved into the database and this is their primary source, however by default they are also saved as regular folders and files on your server.

This behavior is controlled by system configuration overridesin system/user/config/config.php:

// Controls whether template and partial files should be saved on filesystem
$config['save_tmpl_files'] = 'y';
// Controls whether Global variables should be saved as files (requires `save_tmpl_files` also being set to `y`)
$config['save_tmpl_globals'] = 'y';

The directory structure would be similar to what is shown below:

|-- system
|   |-- user
|   |   |-- templates
|   |   |   |-- _global_partials
|   |   |   |   |-- _header.html
|   |   |   |   |-- _footer.html
|   |   |   |-- _global_variables
|   |   |   |   |-- logo.html
|   |   |   |-- default_site
|   |   |   |   |-- _partials
|   |   |   |   |   |-- sidebar.html
|   |   |   |   |-- _variables
|   |   |   |   |   |-- address.html
|   |   |   |   |-- blog.group
|   |   |   |   |   |-- entry.html
|   |   |   |   |   |-- feed.xml
|   |   |   |   |   |-- index.html
|   |   |   |   |-- home.group
|   |   |   |   |   |-- contact.html
|   |   |   |   |   |-- about.html
|   |   |   |   |   |-- index.html
|   |   |   |   |-- styles.group
|   |   |   |   |   |-- contact.css
|   |   |   |   |   |-- index.css
|   |   |   |-- second_msm_site
|   |   |   |   |-- _partials
|   |   |   |   |   |-- sidebar.html
|   |   |   |   |-- _variables
|   |   |   |   |   |-- address.html
|   |   |   |   |-- home.group
|   |   |   |   |   |-- about.html
|   |   |   |   |   |-- index.html

This allows you to use your preferred text editor to edit Templates and then transfer the changes to the server.

default_site and second_msm_site are the site short names if you’re running Multiple Site Manager. If you have just one site, default_site is going to be the only one you need.

_partials folder holds your template partials for the site, and _global_partials holds partials that are shared through all MSM sites.

_variables folder holds your template variables for the site, and _global_variables holds variables that are shared through all MSM sites.

These are the naming rules that ExpressionEngine applies to these resources:

Having several templates with the same name but different extensions is not supported.

The existing templates are synchronized with the files as soon as any site page is accessed. If you created a new template or a new template group on the file system, the pages or edits will be immediately available, though they will not be added to the database until you visit the Developer -> Templates section of the Control Panel or the template is visited on the frontend.

Note: When saving templates as files, index.html will be placed automatically into each template group folder when the templates are synchronized.

Hidden Templates

Sometimes it is undesirable to allow access to a template via a URL. For instance, a template that you only use as an embedded template would likely be an incomplete HTML document, and you wouldn’t want visitors to be able to view that template by itself.

“Hidden” templates are just that: templates that cannot be accessed from a URL, but can be used as embedded templates. To make a template “hidden”, give it a name preceded by an underscore, e.g. _my_hidden_template.

When someone attempts to access a hidden template via a URL, one of two things will occur. If you have specified a 404 template in your Template Settings, then the 404 template will be displayed, with 404 headers. If you have not specified a 404 template, then the index template of the requested template group will be displayed.

Changing the Hidden Template Indicator

By default, a template is hidden when an underscore prefixes the template name, but this can be changed with a configuration variable set in system/user/config/config.php:

$config['hidden_template_indicator'] = '.';

Hit Counters

Every time a template is accessed, a counter is incremented. To display the number of hits, put the following variable in any template:

{hits}

The hit count for each template can be manually altered in the template’s preferences under Developer --> Templates.

PHP in Templates

Important: Enabling PHP in a template enables anyone with editing rights for that template to become a de-facto Super Admin since they can execute any PHP they want in that template, including PHP that can reveal information about your system, PHP that can delete data from your database, etc. Exercise extreme caution before enabling this option if you permit others to edit your templates. Additionally, PHP code in templates will operate slower than same code wrapped in plugin or module function.

ExpressionEngine allows you to place PHP code within your Templates so that it can be executed, allowing more dynamic capability with your content.

In order for this feature to be available, it needs to be enabled by adding

    $config['allow_php'] = 'y';

to your config.php file.

Important: When upgrading from an earlier version of ExpressionEngine to v6, the allow_php config override will automatically be set to ‘y’ if templates already exists that have PHP enabled.

To enable PHP in particular template, set the Allow PHP? setting to Yes. Because PHP is a per-template setting, you can embed a Template that has PHP enabled into another Template which does not have PHP enabled.

PHP Parsing Stage

There are two choices for when PHP gets parsed:

You can read more about template parsing order here: Template Engine.