<!doctype html>
<html lang="fr">
<head>
    <title>Homepage</title>
    <meta charset="utf-8"/>
    <meta name="viewport" content="width=device-width;minimum-scale=0.5,maximum-scale=1.0; user-scalable=1;" />
    <link rel="stylesheet" type="text/css" href="{{css}}"/>
    <link rel="stylesheet" type="text/css" href="{{fa_css}}"/>
</head>
<body>
    <article>
        <h1>Homepage</h1>
{{#sections}}
        <h2>{{title}}</h2>
        <nav style="color: {{color}};">
    {{#image}}
            <a href="{{url}}" class="main">
                <img alt="Logo for {{title}}" src="{{image}}" />
            </a>
    {{/image}}
    {{#links}}
            <a href="{{url}}">
                <i class="fa fa-{{icon}}" aria-label="Icon for {{name}} ({{icon}})"></i>
                <span>{{name}}</span>
            </a>
    {{/links}}
        </nav>

{{/sections}}
    </article>
</body>
</html>