diff options
| author | Dylan Bolger <dylan.bolger00@gmail.com> | 2026-08-17 16:58:04 -0500 |
|---|---|---|
| committer | Dylan Bolger <dylan.bolger00@gmail.com> | 2026-08-17 16:58:04 -0500 |
| commit | a06a7e8f23bfd64565da4e4141f186180e84a104 (patch) | |
| tree | 297a4fb79bccdb94cda9eaccecc4af9cc9766210 /app/templates/index.html | |
| download | photoblog-a06a7e8f23bfd64565da4e4141f186180e84a104.tar.xz photoblog-a06a7e8f23bfd64565da4e4141f186180e84a104.zip | |
initial push of photoblog
Diffstat (limited to 'app/templates/index.html')
| -rw-r--r-- | app/templates/index.html | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/app/templates/index.html b/app/templates/index.html new file mode 100644 index 0000000..991088a --- /dev/null +++ b/app/templates/index.html @@ -0,0 +1,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>
\ No newline at end of file |
