blob: 2c52d239002f94b04128d59f2eb4beedc777d51f (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Gloginki</title>
<style>
:root {
--bg: #f6f8fa;
--card-bg: #ffffff;
--border: #d0d7de;
--text: #24292f;
--muted: #57606a;
--primary: #2da44e;
--primary-hover: #2c974b;
--danger: #cf222e;
--radius: 6px;
}
* {
box-sizing: border-box;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
Helvetica, Arial, sans-serif;
}
body {
margin: 0;
padding: 2rem;
background: var(--bg);
color: var(--text);
}
h1 {
margin-bottom: 1rem;
font-size: 1.6rem;
}
.container {
max-width: 900px;
margin: 0 auto;
}
form {
background: var(--card-bg);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 1.5rem;
margin-bottom: 2rem;
}
fieldset {
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 1rem;
margin-bottom: 1.2rem;
}
legend {
padding: 0 0.5rem;
color: var(--muted);
font-size: 0.9rem;
}
</style>
</head>
<body>
<div class="container">
<h1>Bin-ки и глогинки.</h1>
<form>
<fieldset>
<legend>Link</legend>
<a href="{{ .Link }}">{{ .Link }}</a>
</fieldset>
</form>
</div>
</body>
</html>
|