Local homepage
Basically the same thing as currently online, except templated, and trimmed from useless stuff, but needs modernization.
This commit is contained in:
parent
8d07123713
commit
e26fa6a011
4 changed files with 230 additions and 8 deletions
32
hm/desktop/browser/homepage.html.mustache
Normal file
32
hm/desktop/browser/homepage.html.mustache
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue