-
Notifications
You must be signed in to change notification settings - Fork 0
/
error.html
75 lines (46 loc) · 1.35 KB
/
error.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
<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset = "UTF-8">
<title>Jonas Svedas</title>
<link rel="shortcut icon" href="/static/images/favicon.ico">
<link rel="stylesheet" href="/static/css/style.css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-148910411-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-148910411-1');
</script>
</head>
<body>
<!-- Header contains logo and navigation elements -->
<div class = "flex-col top-container">
<div class = "flex-row top-nav">
<div class = "nav no-a-decor">
<ul>
<li><a>EN</a></li>
</ul>
</div>
</div>
<div class = "flex-row top-border bottom-border">
<div id = "logo">
<h1>JONAS SVEDAS</h1>
</div>
<div class = "nav no-a-decor">
<ul>
<li><a href="/index.html">ARTICLES</a></li>
<li><a href="/about.html">ABOUT</a></li>
</ul>
</div>
</div>
<div class = "page-content">
Page not found.
</div>
<div class = "footer top-border">
Jonas Švedas | 2021
</div>
</div>
</body>
</html>