Basically the same thing as currently online, except templated, and trimmed from useless stuff, but needs modernization.
33 lines
865 B
Plaintext
33 lines
865 B
Plaintext
<!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}}
|
|
<div>
|
|
<img alt="Logo for {{title}}" src="{{image}}" />
|
|
</div>
|
|
{{/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>
|