-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (82 loc) · 2.87 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>neverIand</title>
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
<link rel="apple-touch-icon" href="/favicon.ico" />
<link rel="stylesheet" href="/styles/index.css" />
<!-- Preloading -->
<link rel="preload" href="/styles/common.css" as="style" />
<link rel="stylesheet" href="/styles/common.css" />
<link rel="preload" href="/scripts/essentials.js" as="script" crossorigin/>
<script type="module" src="/scripts/essentials.js"></script>
<link
rel="preload"
href="/fonts/LibreBaskerville-Regular.ttf"
as="font"
type="font/ttf"
crossorigin
/>
<link
rel="preload"
href="/fonts/LibreBaskerville-Bold.ttf"
as="font"
type="font/ttf"
crossorigin
/>
<link
rel="preload"
href="/fonts/LibreBaskerville-Italic.ttf"
as="font"
type="font/ttf"
crossorigin
/>
<!-- -->
</head>
<body>
<noscript>This website requires Javascript to function properly.</noscript>
<berry-header></berry-header>
<!-- TODO? background deco -->
<main>
<!-- banner -->
<section id="banner">
<berry-logo animate="false" muted="true"></berry-logo>
<berry-logo animate="false" muted="true"></berry-logo>
<berry-logo animate="false" muted="true"></berry-logo>
<berry-logo animate="false" muted="true"></berry-logo>
<berry-logo animate="false" muted="true"></berry-logo>
<berry-logo animate="false" muted="true"></berry-logo>
<berry-logo animate="false" muted="true"></berry-logo>
<berry-logo animate="false" muted="true"></berry-logo>
<berry-logo animate="false" muted="true"></berry-logo>
</section>
<!-- intro -->
<section id="intro">
<p>
This is the 3rd iteration of my blog. I may post something relevant to
tech and other random stuff here.
</p>
<p>
In case you wonder, the first iteration is written in php and you can
have a glimpse
<a href="/articles/archived/article-000-hello-world.html">here</a>
(HTML). The second iteration works fine but I just decided to throw it
away, and now I
<a href="/articles/new/new-00-preface.html">end up here.</a>
</p>
<p>Note: Use <code>Ctrl + f</code> to search for content.</p>
</section>
<!-- article list -->
<section id="article-list" class="title-list flex-col-center">
<h2>Newest Articles</h2>
</section>
<section id="misc-list" class="title-list flex-col-center">
<h2>Misc</h2>
</section>
</main>
<berry-footer></berry-footer>
<script type="module" src="/scripts/index.js"></script>
</body>
</html>