-
Notifications
You must be signed in to change notification settings - Fork 23
/
app.html
28 lines (28 loc) · 1.01 KB
/
app.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
<!DOCTYPE html>
<html {{ HTML_ATTRS }}>
<head>
{{ HEAD }}
<script defer src="https://use.fontawesome.com/releases/v5.0.10/js/all.js" integrity="sha384-slN8GvtUJGnv6ca26v8EzVaR9DC58QEwsIk9q1QXdCU8Yu8ck/tL/5szYlBbqmS+" crossorigin="anonymous"></script>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body {{ BODY_ATTRS }}>
<noscript>
<section>
<div class="modal is-active">
<div class="modal-background"></div>
<div class="modal-content">
<article class="message is-danger">
<div class="message-header">JavaScript as not activated</div>
<div class="message-body">
<div class="media">The site needs JavaScript to work. Thank you to activate it.</div>
</div>
</article>
</div>
</div>
</section>
</noscript>
{{ APP }}
</body>
</html>