-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (50 loc) · 2.66 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hallo</title>
<link rel="stylesheet" href="https://zola-hallo.janbaudisch.dev/fonts.css">
<link rel="stylesheet" href="https://zola-hallo.janbaudisch.dev/fontawesome/css/fontawesome.css">
<link rel="stylesheet" href="https://zola-hallo.janbaudisch.dev/hallo.css">
<style>
body {
color: #FFF !important;
background-color: #6FCDBD !important;
}
a {
color: #FFF !important;
}
a:hover {
color: #333 !important;
}
img.portrait {
border: 10px solid #FFF !important;
}
</style>
</head>
<body>
<main>
<div class="column left">
<img src="https://zola-hallo.janbaudisch.dev/images/portrait.jpg" class="portrait" alt="Portrait" />
</div>
<div class="column right">
<h1>Hello!</h1>
<h2>I am Hallo.</h2>
<p>Hallo is a single-page theme to introduce yourself. Add a portrait, an introduction, several links, and you're set. Create a partial called introduction.html on your own site to replace this standard introduction. Create a file called portrait.jpg in static/images to replace the standard portrait.
</p>
<div class="links">
<a rel="me" href="mailto:[email protected]" title="E-Mail">
<span class="fas fa-envelope"></span>
</a>
<a rel="me" href="https://github.com" title="GitHub">
<span class="fab fa-github"></span>
</a>
<a rel="me" href="https://twitter.com" title="Twitter">
<span class="fab fa-twitter"></span>
</a>
</div>
</div>
</main>
</body>
</html>