-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (54 loc) · 2.65 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
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
62
63
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Compassion International Sponsorship Campaign</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/lipis/[email protected]/css/flag-icons.min.css">
<style>
[data-compassion-logo]
{
height: 12vh;
min-height: .7in !important;
font-size: 12vh;
}
</style>
</head>
<body>
<div class="d-flex flex-column" style="min-height: 100vh">
<header class="container-fluid bg-white p-2 d-flex gap-3 border-bottom border-dark border-3">
<img src="https://www.moravian.org/wp-content/uploads/2018/06/SS_frontsealforportal.jpg" data-compassion-logo>
<img src="https://alchetron.com/cdn/compassion-international-731d5f7e-31f1-4680-834c-6b4b5106612-resize-750.jpeg" data-compassion-logo>
</header>
<main class="flex-fill d-flex align-items-stretch">
<div class="container">
<div class="row row-cols-1 row-cols-md-2 row-cols-lg-3 row-cols-xl-4 py-2" data-childlist></div>
</div>
</main>
<footer class="mt-auto py-1 text-center text-secondary font-monospace border-top border-dark border-3 small">
Powered by Parseley
</footer>
<div class="modal" tabindex="-1" id="sponsorModal">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-body" data-preview></div>
<div class="modal-footer justify-content-between">
<button type="button" class="btn btn-outline-secondary" data-bs-dismiss="modal">Nevermind</button>
<a type="button" class="btn btn-primary" data-movetocart></a>
</div>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<script type="module">
import * as App from "./app.js";
App.build();
App.childlistHeight();
onresize=()=>{ App.childlistHeight(); }
document.addEventListener('preview',(e)=>{ App.previewChild(e.detail.index); });
</script>
</body>
</html>