Skip to content
This repository was archived by the owner on Feb 13, 2024. It is now read-only.

Container

Peter Rudolfsen edited this page Mar 27, 2013 · 2 revisions

Description

Containers are elements used in [templates](Building templates) to contain figures.

Examples

Lets say that the article we're importing contains the following figure:

<figure>
     <h1 data-map="title">Title of the article</h1>
</figure>

The figure can then be targeted in a template by a container like this:

<div class="alf-container" data-map="title"></div>

The resulting markup on the page will be:

<div class="alf-container" data-map="title">
    <h1 data-map="title">Title of the article</h1>
</div>
Clone this wiki locally