-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (27 loc) · 1.02 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<title>PIaaS Retailer Newsletter</title>
<link rel="icon" type="image/x-icon" href="./assets/images/favicon.ico">
<link rel="stylesheet" type="text/css" href="./assets/styles/fonts.css">
<link rel="stylesheet" type="text/css" href="./assets/styles/page.css">
<script src="./assets/aspect-js-max.js"></script>
</head>
<body>
<div id="spinner" composite></div>
<main>
<header id="header" composite></header>
<h1>{{messages.page.headline}}</h1>
<h1>{{messages.page.title}}</h1>
<!-- Displaying depends on the fact that no error has occurred -->
<section id="news" composite condition="{{!error.exists()}}"></section>
<!-- Displaying depends on the fact that an error has occurred -->
<section id="error" composite condition="{{error.exists()}}"></section>
<p>
{{messages.page.version}} 0.0.0 00000000
</p>
<footer id="footer" composite></footer>
</main>
</body>
</html>