Getting Started
The basic building blocks of any Enso website are templates and tags.
...
<body>
<div><enso:content name="hello-world" /></div>
</body>
</html>
Name Attribute
The most common attribute is name which is used to associate dynamic content with a specific tag.
<html>
...
<body>
<div><enso:content name="hello-world" /></div>
</body>
</html>
Level Attribute
Another common attribute is level which allows you to create content that persists at various levels such as site, section and page level.
...
<body>
<div><enso:content name="hello-world" level="site" /></div>
</body>
</html>
Click in the side navigation for more information about each tag and their specific attributes.
- A template is an HTML file uploaded to the root directory of the website.
- A tag creates an editable area for content and looks very similar to HTML.
...
<body>
<div><enso:content name="hello-world" /></div>
</body>
</html>
Tag Attributes
Most tags have attributes which allow the designer to control various aspects of the tag.Name Attribute
The most common attribute is name which is used to associate dynamic content with a specific tag.
<html>
...
<body>
<div><enso:content name="hello-world" /></div>
</body>
</html>
Level Attribute
Another common attribute is level which allows you to create content that persists at various levels such as site, section and page level.
- Site level content appears on all pages within the website.
- Section level content appears on all pages within a section.
- Page level content appears on a specific page.
...
<body>
<div><enso:content name="hello-world" level="site" /></div>
</body>
</html>
Click in the side navigation for more information about each tag and their specific attributes.
