-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlayout.html
61 lines (56 loc) · 2.56 KB
/
layout.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<% Stipple.sesstoken() %>
<title>Genie component gallery</title>
<link rel="stylesheet" type="text/css" href="/highlight.css" />
<link rel="stylesheet" type="text/css" href="/gallery/highlight.css" />
<% if isfile(joinpath(Genie.config.server_document_root, "css" , "genieapp.css" )) %>
<link rel='stylesheet' href='/css/genieapp.css' />
<% else %>
<% end %>
<% if isfile(joinpath(Genie.config.server_document_root, "css" , "autogenerated.css" )) %>
<link rel='stylesheet' href='/css/autogenerated.css'>
<% else %>
<% end %>
<style>
._genie_logo {
background: url('https://genieframework.com/logos/genie/logo-simple-with-padding.svg') no-repeat;
background-size: 40px;
padding-top: 22px;
padding-right: 10px;
color: transparent;
font-size: 9pt;
}
._genie .row .col-12 {
width: 50%;
margin: auto;
}
</style>
</head>
<body>
<div class='container'>
<div class='row'>
<div class='col-12'>
<% page(model, partial=true, v__cloak=true, [@yield], @iif(:isready)) %>
</div>
</div>
</div>
<% if isfile(joinpath(Genie.config.server_document_root, "js" , "genieapp.js" )) %>
<script src='/js/genieapp.js'></script>
<% else %>
<% end %>
<footer class='_genie container'>
<div class='row'>
<div class='col-12'>
<p class='text-muted credit' style='text-align:center;color:#8d99ae;'>Built with
<a href='https://genieframework.com' target='_blank' class='_genie_logo'
ref='nofollow'>Genie</a>
</p>
</div>
</div>
<script type="module" src="https://md-block.verou.me/md-block.js"></script>
</footer>
</body>
</html>