Skip to content

Commit a2a2524

Browse files
jekyll build from Action 771377d
0 parents  commit a2a2524

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+727
-0
lines changed

.nojekyll

Whitespace-only changes.

404.html

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
<!DOCTYPE html>
2+
<html lang="en-US"><head>
3+
<meta charset="utf-8">
4+
<meta name="viewport" content="width=device-width, initial-scale=1">
5+
<title></title>
6+
<link rel="stylesheet" href="/assets/css/styles.css">
7+
<link rel="preload" as="font" href="/assets/fonts/Chivo_Mono/ChivoMono-VariableFont_wght.woff2" type="font/woff2" crossorigin="anonymous">
8+
<link rel="preload" as="font" href="/assets/fonts/Chivo_Mono/ChivoMono-VariableFont_wght.woff" type="font/woff" crossorigin="anonymous">
9+
<link rel="preload" as="font" href="/assets/fonts/Titillium_Web/TitilliumWeb-VF.woff2" type="font/woff2" crossorigin="anonymous">
10+
<link rel="preload" as="font" href="/assets/fonts/Titillium_Web/TitilliumWeb-VF.woff" type="font/woff" crossorigin="anonymous">
11+
</head>
12+
<body><header><script>
13+
/* Set the width of the side navigation to 250px */
14+
function openNav() {
15+
document.getElementById("nav").style.width = "200px";
16+
document.getElementById("nav__openbtn").style.right = "-100px";
17+
}
18+
19+
/* Set the width of the side navigation to 0 */
20+
function closeNav() {
21+
document.getElementById("nav").style.width = "0";
22+
document.getElementById("nav__openbtn").style.right = "7px";
23+
}
24+
</script>
25+
<nav id="nav"> <!-- this has the ID nav because I do not think there is another way to get the JavaScript working. This is because there is no function to grab a tag, and apply a style to it, in the same way that getElementById() does. Otherwise, the ID does literally nothing, as all the formatting is applied to the nav tag itself -->
26+
<a href="javascript:void(0)" id="nav__closebtn" onclick="closeNav()"><img src="/assets/images/cross.png"></a><a class="nav__links" href="/">
27+
<div style="width: 24px;"> <!-- even spacing --></div>Home<div style="width: 24px;"> <!-- even spacing --> </div>
28+
</a><a class="nav__links" href="/about.html">
29+
<div style="width: 24px;"> <!-- even spacing --><img src="/assets/images/about-icon.png" class="nav__links__icon"></div>About<div style="width: 24px;"> <!-- even spacing --> </div>
30+
</a><a class="nav__links" href="/blog.html">
31+
<div style="width: 24px;"> <!-- even spacing --><img src="/assets/images/blog-icon.png" class="nav__links__icon"></div>Blog<div style="width: 24px;"> <!-- even spacing --> </div>
32+
</a></nav>
33+
<span onclick="openNav()" id="nav__openbtn">Navigation</span>
34+
<div id="header__content">
35+
<h1 class="page-title"></h1>
36+
<h2 class="page-summary"></h2>
37+
</div>
38+
</header>
39+
<main>
40+
<style type="text/css" media="screen">
41+
.container {
42+
margin: 10px auto;
43+
max-width: 600px;
44+
text-align: center;
45+
}
46+
h1 {
47+
margin: 30px 0;
48+
font-size: 4em;
49+
line-height: 1;
50+
letter-spacing: -1px;
51+
}
52+
</style>
53+
54+
<div class="container">
55+
<h1>404</h1>
56+
57+
<p><strong>Page not found :(</strong></p>
58+
<p>The requested page could not be found.</p>
59+
</div>
60+
61+
</main><footer><div id="footer__links"><a href="/">
62+
<div>Home</div>
63+
</a><a href="/about.html">
64+
<div>About</div>
65+
</a><a href="/blog.html">
66+
<div>Blog</div>
67+
</a></div>
68+
<div id="footer__watermark">
69+
This website is using Dusk, a theme built with ❤️ for GitHub pages, by Parmjot Singh.
70+
</div></footer>
71+
</body>
72+
</html>

about.html

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
<!DOCTYPE html>
2+
<html lang="en-US"><head>
3+
<meta charset="utf-8">
4+
<meta name="viewport" content="width=device-width, initial-scale=1">
5+
<title>About me</title>
6+
<link rel="stylesheet" href="/assets/css/styles.css">
7+
<link rel="preload" as="font" href="/assets/fonts/Chivo_Mono/ChivoMono-VariableFont_wght.woff2" type="font/woff2" crossorigin="anonymous">
8+
<link rel="preload" as="font" href="/assets/fonts/Chivo_Mono/ChivoMono-VariableFont_wght.woff" type="font/woff" crossorigin="anonymous">
9+
<link rel="preload" as="font" href="/assets/fonts/Titillium_Web/TitilliumWeb-VF.woff2" type="font/woff2" crossorigin="anonymous">
10+
<link rel="preload" as="font" href="/assets/fonts/Titillium_Web/TitilliumWeb-VF.woff" type="font/woff" crossorigin="anonymous">
11+
</head>
12+
<body><header><script>
13+
/* Set the width of the side navigation to 250px */
14+
function openNav() {
15+
document.getElementById("nav").style.width = "200px";
16+
document.getElementById("nav__openbtn").style.right = "-100px";
17+
}
18+
19+
/* Set the width of the side navigation to 0 */
20+
function closeNav() {
21+
document.getElementById("nav").style.width = "0";
22+
document.getElementById("nav__openbtn").style.right = "7px";
23+
}
24+
</script>
25+
<nav id="nav"> <!-- this has the ID nav because I do not think there is another way to get the JavaScript working. This is because there is no function to grab a tag, and apply a style to it, in the same way that getElementById() does. Otherwise, the ID does literally nothing, as all the formatting is applied to the nav tag itself -->
26+
<a href="javascript:void(0)" id="nav__closebtn" onclick="closeNav()"><img src="/assets/images/cross.png"></a><a class="nav__links" href="/">
27+
<div style="width: 24px;"> <!-- even spacing --></div>Home<div style="width: 24px;"> <!-- even spacing --> </div>
28+
</a><a class="nav__links" href="/about.html">
29+
<div style="width: 24px;"> <!-- even spacing --><img src="/assets/images/about-icon.png" class="nav__links__icon"></div>About<div style="width: 24px;"> <!-- even spacing --> </div>
30+
</a><a class="nav__links" href="/blog.html">
31+
<div style="width: 24px;"> <!-- even spacing --><img src="/assets/images/blog-icon.png" class="nav__links__icon"></div>Blog<div style="width: 24px;"> <!-- even spacing --> </div>
32+
</a></nav>
33+
<span onclick="openNav()" id="nav__openbtn">Navigation</span>
34+
<div id="header__content">
35+
<h1 class="page-title">About me</h1>
36+
<h2 class="page-summary"></h2>
37+
</div>
38+
</header>
39+
<main>
40+
<h3 id="something-about-me">Something about me</h3>
41+
<p>I am a person who likes tinkering with stuff so much, that it breaks.
42+
I love tech, and how every small thing that you change can make it your own. I enjoy coding, browsing the web, and playing <a href="https://www.youtube.com/watch?v=hfLecAWFQIc">TrackMania</a>. I love being creative, and enjoy taking on challenges. I also love learning new skills, and love using them. I enjoy doing things practically, but I don’t like theory. Who likes theory?</p>
43+
44+
<p>I need to add more stuff.</p>
45+
46+
</main><footer><div id="footer__links"><a href="/">
47+
<div>Home</div>
48+
</a><a href="/about.html">
49+
<div>About</div>
50+
</a><a href="/blog.html">
51+
<div>Blog</div>
52+
</a></div>
53+
<div id="footer__watermark">
54+
This website is using Dusk, a theme built with ❤️ for GitHub pages, by Parmjot Singh.
55+
</div></footer>
56+
</body>
57+
</html>

assets/css/styles.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
64.6 KB
Binary file not shown.
54.6 KB
Binary file not shown.
57.4 KB
Binary file not shown.
48.6 KB
Binary file not shown.

assets/fonts/Chivo_Mono/OFL.txt

Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
Copyright 2019 The Chivo Project Authors (https://github.com/Omnibus-Type/Chivo)
2+
3+
This Font Software is licensed under the SIL Open Font License, Version 1.1.
4+
This license is copied below, and is also available with a FAQ at:
5+
http://scripts.sil.org/OFL
6+
7+
8+
-----------------------------------------------------------
9+
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
10+
-----------------------------------------------------------
11+
12+
PREAMBLE
13+
The goals of the Open Font License (OFL) are to stimulate worldwide
14+
development of collaborative font projects, to support the font creation
15+
efforts of academic and linguistic communities, and to provide a free and
16+
open framework in which fonts may be shared and improved in partnership
17+
with others.
18+
19+
The OFL allows the licensed fonts to be used, studied, modified and
20+
redistributed freely as long as they are not sold by themselves. The
21+
fonts, including any derivative works, can be bundled, embedded,
22+
redistributed and/or sold with any software provided that any reserved
23+
names are not used by derivative works. The fonts and derivatives,
24+
however, cannot be released under any other type of license. The
25+
requirement for fonts to remain under this license does not apply
26+
to any document created using the fonts or their derivatives.
27+
28+
DEFINITIONS
29+
"Font Software" refers to the set of files released by the Copyright
30+
Holder(s) under this license and clearly marked as such. This may
31+
include source files, build scripts and documentation.
32+
33+
"Reserved Font Name" refers to any names specified as such after the
34+
copyright statement(s).
35+
36+
"Original Version" refers to the collection of Font Software components as
37+
distributed by the Copyright Holder(s).
38+
39+
"Modified Version" refers to any derivative made by adding to, deleting,
40+
or substituting -- in part or in whole -- any of the components of the
41+
Original Version, by changing formats or by porting the Font Software to a
42+
new environment.
43+
44+
"Author" refers to any designer, engineer, programmer, technical
45+
writer or other person who contributed to the Font Software.
46+
47+
PERMISSION & CONDITIONS
48+
Permission is hereby granted, free of charge, to any person obtaining
49+
a copy of the Font Software, to use, study, copy, merge, embed, modify,
50+
redistribute, and sell modified and unmodified copies of the Font
51+
Software, subject to the following conditions:
52+
53+
1) Neither the Font Software nor any of its individual components,
54+
in Original or Modified Versions, may be sold by itself.
55+
56+
2) Original or Modified Versions of the Font Software may be bundled,
57+
redistributed and/or sold with any software, provided that each copy
58+
contains the above copyright notice and this license. These can be
59+
included either as stand-alone text files, human-readable headers or
60+
in the appropriate machine-readable metadata fields within text or
61+
binary files as long as those fields can be easily viewed by the user.
62+
63+
3) No Modified Version of the Font Software may use the Reserved Font
64+
Name(s) unless explicit written permission is granted by the corresponding
65+
Copyright Holder. This restriction only applies to the primary font name as
66+
presented to the users.
67+
68+
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
69+
Software shall not be used to promote, endorse or advertise any
70+
Modified Version, except to acknowledge the contribution(s) of the
71+
Copyright Holder(s) and the Author(s) or with their explicit written
72+
permission.
73+
74+
5) The Font Software, modified or unmodified, in part or in whole,
75+
must be distributed entirely under this license, and must not be
76+
distributed under any other license. The requirement for fonts to
77+
remain under this license does not apply to any document created
78+
using the Font Software.
79+
80+
TERMINATION
81+
This license becomes null and void if any of the above conditions are
82+
not met.
83+
84+
DISCLAIMER
85+
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
86+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
87+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
88+
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
89+
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
90+
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
91+
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
92+
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
93+
OTHER DEALINGS IN THE FONT SOFTWARE.

0 commit comments

Comments
 (0)