-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (52 loc) · 2.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Toms Grants</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="keywords" content="Toms Grants, portfolio, projects">
<meta name="description" content="I'm a software developer from Latvia. This site contains my personal projects.">
<meta name="google-site-verification" content="mEC5aSH3qXkNaKTc5pOZjNnIl-WG3f_70QX849-atIM">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script src="js/theme.js"></script>
<script src="js/loader.js"></script>
<script src="js/main.js"></script>
<link rel="icon" href="data/img/t.svg" sizes="any" type="image/svg+xml">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap">
</head>
<body>
<header class="header">
<h1 class="header-title">Toms Grants</h1>
<nav class="header-navigation" id="nav-long">
<a href="./?home">Home</a>
<!--a href="./?about">About me</a-->
<a href="./?articles">Articles</a>
<a href="./?downloads">Downloads</a>
</nav>
<nav class="header-navigation" id="nav-short">
<button class="icon" onclick="toggleNavbar()" title="Expand navigation menu">
<img src="data/img/menu.svg" alt="">
</button>
</nav>
</header>
<nav id="nav-bottom">
<a href="./?home">Home</a>
<!--a href="./?about">About me</a-->
<a href="./?articles">Articles</a>
<a href="./?downloads">Downloads</a>
</nav>
<div id="content">
</div>
<footer class="footer">
<nav id="footer-navigation">
<a class="footer-icon github-icon" href="https://www.github.com/tgrants" aria-label="My GitHub"><img src="data/img/github.svg" alt=""></a>
<a class="footer-icon linkedin-icon" href="https://www.linkedin.com/in/tgrants/" aria-label="My LinkedIn"><img src="data/img/linkedin.svg" alt=""></a>
<a class="footer-icon bluesky-icon" href="https://bsky.app/profile/tomsgrants.com" aria-label="My Bluesky profile"><img src="data/img/bluesky.svg" alt=""></a>
<a class="footer-icon youtube-icon" href="https://www.youtube.com/channel/UCqpMOJsS_3FTbG6QDl7yufg" aria-label="My YouTube channel"><img src="data/img/youtube.svg" alt=""></a>
<a class="footer-icon itchio-icon" href="https://klappscheinwerfer.itch.io" aria-label="My Itch.io profile"><img src="data/img/itchio.svg" alt=""></a>
</nav>
<p class="copyright-notice">Copyright © <span id="year"></span> Toms Grants</p>
</footer>
</body>
</html>