blob: d3248036b4b64cd1c815271b2b5b364ecc37ef22 (
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
|
<!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}}
<h3>{{contact_info_title}}</h3>
<div class="contact-info">
{{&contact_info_body}}
</div>
</body>
</html>
|