summaryrefslogtreecommitdiffstats
path: root/src/index.html.mustache
blob: 5133c9ca1a8eb4a1836f975414e34e0775bdd233 (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
<!DOCTYPE html>
<html lang="en">
    <head>
        <title>Minni Honka</title>
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <link rel="icon" type="image/png" href="/logo.png">
        <link rel="stylesheet" href="styles.css">
        <link rel="preconnect" href="https://fonts.googleapis.com">
        <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
        <link href="https://fonts.googleapis.com/css2?family=Amiri&family=Roboto:wght@300&display=swap" rel="stylesheet">
        <script src="/netlify-identity-widget.js"></script>
    </head>
    <body>
        <img id="swoosh" src="swoosh.svg" alt="">
        <header>
            <h1>Minni Honka</h1>
            <h2>Graphic designer & Illustrator</h2>
            <img id="logo" src="logo.svg" alt="">
        </header>

        {{#galleries}}
        {{#display_title}}
        <h3>{{display_title}}</h3>
        {{/display_title}}
        <div class="gallery">
            {{#columns}}
            <div class="column">
                {{#.}}
                <a target="_blank" href="{{&src_hiq}}">
                    <img src="{{&src_thumbnail}}" alt="{{title}}">
                </a>
                {{/.}}
            </div>
            {{/columns}}
        </div>
        {{/galleries}}
    </body>
</html>