diff options
Diffstat (limited to 'src/index.html.mustache')
| -rw-r--r-- | src/index.html.mustache | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/index.html.mustache b/src/index.html.mustache new file mode 100644 index 0000000..d01df1a --- /dev/null +++ b/src/index.html.mustache @@ -0,0 +1,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}}
+ {{#show_title}}
+ <h3>{{title}}</h3>
+ {{/show_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>
\ No newline at end of file |
