blob: 991088a1bf8defdce8ff5c54340194f633e7b267 (
plain)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://dbolger.dev/assets/css/main.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/water.css@2/out/water.css">
<link rel="stylesheet" href="{{ url_for('static', path='index.css') }}">
<title>Dylan's Photo Blog</title>
</head>
<body>
<nav id="nav" class="topnav">
<a class="active" href="https://dbolger.dev">Dylan Bolger</a>
<p>Software Engineer</p>
<div class="topnav-right">
<a href="https://dbolger.dev/#Experience">Experience</a>
<a href="https://dbolger.dev/#Projects">Projects</a>
<a href="https://blog.dbolger.dev">Blog</a>
<a href="https://blog.dbolger.dev">Blog</a>
<a href="https://git.dbolger.dev">Git</a>
<a href="https://dbolger.dev/assets/pdf/resume.pdf">Resume</a>
<a href="mailto:dylan.bolger00@gmail.com">Contact</a>
</div>
</nav>
<section class="container">
<h1>Photo Blog</h1>
<p>Here's some pictures I took that I think you would enjoy.</p>
{% if images and images|length > 0 %}
<main class="gallery">
{% for img in images %}
<div class="gallery-item">
<a href="{{ url_for('photos', path=img) }}">
<img src="{{ url_for('photos', path=img) }}" alt="" loading="lazy">
</a>
</div>
{% endfor %}
</main>
{% else %}
<p>
If you're reading this, something went wrong and you should send me an email. Thanks!
</p>
{% endif %}
</div>
</body>
</html>
|