You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
HelenaExpressApp/www/pages/home.html

44 lines
1.7 KiB
HTML

<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<div class="page" data-name="home">
<div class="navbar">
<div class="navbar-inner">
<div class="title"><!-- {{js "SETTINGS.branding.apptitle"}} --></div>
<div class="right">
<a href="/settings" class="link icon-only color-white">
<i class="fal fa-cog"></i>
</a>
</div>
</div>
</div>
<div class="page-content noselect">
<div class="row margin-top noselect">
<div class="col text-align-center">
<img class="widelogo" src="assets/images/companylogo.svg" />
</div>
</div>
<div class="row justify-content-center margin-top">
<div class="col-100 medium-90 xlarge-75 margin-horizontal">
<div class="row">
{{#each pages}}
<div class="col-50 small-33 large-15 margin-vertical-half">
<div class="card" onclick="router.navigate('{{href}}');">
<div class="card-content text-align-center padding-vertical">
<h1 class="no-margin"><i class="{{icon}}"></i></h1>
<br />
<span style="font-weight: 700;">{{title}}</span>
</div>
</div>
</div>
{{/each}}
</div>
</div>
</div>
</div>
</div>