Local homepage

Basically the same thing as currently online, except templated, and
trimmed from useless stuff, but needs modernization.
This commit is contained in:
Geoffrey Frogeye 2025-01-31 00:05:22 +01:00
parent 8d07123713
commit e26fa6a011
Signed by: geoffrey
GPG key ID: C72403E7F82E6AD8
4 changed files with 230 additions and 8 deletions

View file

@ -0,0 +1,32 @@
<!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>