generated from koldovsky/htmx-template-autocheck
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery.html
More file actions
77 lines (77 loc) · 2 KB
/
gallery.html
File metadata and controls
77 lines (77 loc) · 2 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!--Dykunec Ivan-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Gallery</title>
<link
rel="apple-touch-icon"
sizes="180x180"
href="img/favicon/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="img/favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="img/favicon/favicon-16x16.png"
/>
<link rel="manifest" href="img/favicon/site.webmanifest" />
<link
rel="icon"
type="image/png"
sizes="192x192"
href="img/favicon/android-chrome-192x192.png"
/>
<link
rel="icon"
type="image/png"
sizes="512x512"
href="img/favicon/android-chrome-512x512.png"
/>
<script
src="https://unpkg.com/htmx.org@1.9.10"
integrity="sha384-D1Kt99CQMDuVetoL1lrYwg5t+9QdHe7NLX/SoJYkXDFfX37iInKRy5xLSi8nO7UC"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="css/pages/gallery.css" />
</head>
<body>
<header class="header">
<nav
data-hx-trigger="load"
data-hx-swap="outerHTML"
data-hx-get="partials/global/global.header-nav.partial.html"
></nav>
</header>
<main class="main">
<section
class="gallery"
data-hx-trigger="load"
data-hx-swap="outerHTML"
data-hx-get="partials/gallery/gallery.partial.html"
></section>
</main>
<!-- Start Abrosimova Iryna -->
<section
class="gallery"
data-hx-trigger="load"
data-hx-swap="outerHTML"
data-hx-get="partials/gallery/gallery-guest.partial.html"
></section>
<!-- End Abrosimova Iryna -->
<footer
class="footer"
data-hx-trigger="load"
data-hx-swap="outerHTML"
data-hx-get="partials/global/global.footer.partial.html"
></footer>
<script src="js/pages/gallery.js"></script>
</body>
</html>