-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (52 loc) · 1.54 KB
/
index.html
File metadata and controls
52 lines (52 loc) · 1.54 KB
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
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<div class="main-container">
<header class="main-header">
<div class="header-content">
<div class="logo-title" onclick="window.location='../';">
<h2>Artists Gallery</h2>
</div>
<nav class="main-nav">
<a href="#">Exhibitions</a>
<a href="#">Artists</a>
<a href="#">Visit</a>
<a href="#">Shop</a>
</nav>
</div>
</header>
<div class="divider"></div>
<main>
<h1 class="featured-title">Featured Artists</h1>
<ul class="artist-grid">
{{range .}}
<li>
<form action="/artist" method="GET" style="display:inline;">
<input type="hidden" name="id" value="{{.ID}}">
<button type="submit" style="border:none;background:none;padding:0;">
<img src="{{.Image}}" alt="{{.Name}}">
</button>
</form>
<div class="artist-name">{{.Name}}</div>
</li>
{{end}}
</ul>
</main>
<footer class="main-footer">
<div class="footer-links">
<a href="#">About</a>
<a href="#">Contact</a>
<a href="#">Privacy Policy</a>
<a href="#">Terms of Service</a>
</div>
<p class="footer-copy">@2025 Art Gallary. All rights reserved.</p>
</footer>
</div>
</body>
</html>