-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (64 loc) · 3.57 KB
/
Copy pathindex.html
File metadata and controls
85 lines (64 loc) · 3.57 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
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="author" content="Chris Muntean" />
<title>Chris Muntean | Photographer</title>
<meta property="og:image" content="/assets/img-static/camera-lens.png" />
<!-- Favicon-->
<link rel="icon" type="image/x-icon" href="/assets/favicon.ico" />
<!-- Bootstrap icons-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
<!-- Google fonts-->
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css" />
<!-- Core theme CSS (includes Bootstrap)-->
<link href="/css/styles.css" rel="stylesheet" />
</head>
<body>
<div id="nav"></div>
<div class="container">
<div class="row featurette py-5 mx-3">
<div class="col-md-7 order-md-2">
<h2 class="featurette-heading fw-normal lh-1 pt-5">Your favorite photographer</h2>
<p class="lead">Need photos for your next event? Let me capture every unforgettable moment—book me today!</p>
<a target="_blank" href="https://chrismuntean.setmore.com/"><button type="button" class="btn btn-outline-secondary">Book now</button></a>
</div>
<div class="col-md-5 order-md-1 mb-3 px-5 mt-3">
<img src="/assets/img-static/chrismuntean.jpg" class="rounded-circle float-end img-fluid" width="250" alt="...">
</div>
</div>
</div>
<hr width="90%" class="mx-auto my-4">
<!-- Loader -->
<div id="album-loader" class="text-center my-5">
<div class="spinner-border text-primary" role="status" style="width: 3rem; height: 3rem;">
<span class="visually-hidden">Loading...</span>
</div>
</div>
<div class="container text-center py-5">
<div class="row row-cols-2 row-cols-lg-5 g-2 g-lg-3 justify-content-center">
<!--
<div class="card col m-3 px-0" style="width: 18rem;">
<img src="https://lightroom.adobe.com/v2c/spaces/0c468d193c5f4e7090ef3d11becfef9f/assets/b497080f30d3e01f9b5605cda242432f/revisions/be47d006ae36459fbd3a928aba8ddd6e/renditions/cf4006dca5d9395260c25fb25e57b626" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Love Mansion <span class="badge rounded-pill text-bg-success fw-bolder ms-1">$3</span></h5>
<p class="card-text text-muted">Febuary 15th, 2025</p>
<a href="/view/<ALBUM-LINK>" class="btn btn-primary">View album</a>
</div>
</div>
CARDS INSERTED HERE
-->
</div>
</div>
<!-- footer dynamically loaded via js -->
<div id="footer"></div>
<script src="/js/dynamic-loader.js"></script>
<!-- Bootstrap core JS-->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"></script>
<!-- Firebase auth JS -->
<script type="module" src="/js/auth-session.js"></script>
<!-- Album cards -->
<script type="module" src="/js/album-cards.js"></script>
</body>
</html>