added about section
This commit is contained in:
parent
5f0d2b22a5
commit
5d1dce366f
1 changed files with 107 additions and 0 deletions
107
about.html
Normal file
107
about.html
Normal file
|
@ -0,0 +1,107 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<!-- JS Licese -->
|
||||
<script>
|
||||
/*
|
||||
@licstart The following is the entire license notice for the
|
||||
JavaScript code in this page.
|
||||
|
||||
Copyright (C) 2022 Aviv "RustyStriker" Romem
|
||||
|
||||
The JavaScript code in this page is free software: you can
|
||||
redistribute it and/or modify it under the terms of the GNU
|
||||
General Public License (GNU GPL) as published by the Free Software
|
||||
Foundation, either version 3 of the License, or (at your option)
|
||||
any later version. The code is distributed WITHOUT ANY WARRANTY;
|
||||
without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
FOR A PARTICULAR PURPOSE. See the GNU GPL for more details.
|
||||
|
||||
As additional permission under GNU GPL version 3 section 7, you
|
||||
may distribute non-source (e.g., minimized or compacted) forms of
|
||||
that code without the copy of the GNU GPL normally required by
|
||||
section 4, provided you include this license notice and a URL
|
||||
through which recipients can access the Corresponding Source.
|
||||
|
||||
|
||||
@licend The above is the entire license notice
|
||||
for the JavaScript code in this page.
|
||||
*/
|
||||
</script>
|
||||
|
||||
<title>About</title>
|
||||
|
||||
<!--Style stuff -->
|
||||
<link rel="stylesheet" type="text/css" href="default_style.css" media="all">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div>
|
||||
<a href = "https://rustystriker.dev/">
|
||||
<h1 style="margin-bottom:0px;">Rusty's Website</h1>
|
||||
</a>
|
||||
<p style = "margin-top: 0px;">
|
||||
A place for wanky stuff, weird JavaScript and warm-ish takes
|
||||
</p>
|
||||
<a href = "https://rustystriker.dev/about.html">About</a>
|
||||
<a href = "https://gitea.rustystriker.dev/RustyStriker/website">Source</a>
|
||||
<a href = "https://rustystriker.dev/licenses.html">Licenses</a>
|
||||
</div>
|
||||
</header>
|
||||
<h1>
|
||||
About
|
||||
</h1>
|
||||
<p>
|
||||
<a href="#website">Website</a>
|
||||
<a href="#me">Me</a>
|
||||
</p>
|
||||
<div>
|
||||
<h2 id="website">Website</h2>
|
||||
<p>
|
||||
This is my personal website, I shall post here random pages about random stuff,
|
||||
mostly about gamedev, coding(mostly in Rust, and maybe in C)
|
||||
and probably some politics and morality(or immorality in our world).
|
||||
<br><br>
|
||||
Thoughts are usually my own(unless noted otherwise),
|
||||
and as of the date(if present) on the relevant page.
|
||||
<br>
|
||||
I do not garuntee my thoughts and ideas won't change with time,
|
||||
since as <i>(sadly)</i> only a human being,
|
||||
I shall grow and change <i>(hopefully for the better)</i> as time progress.
|
||||
<br><br>
|
||||
<i>
|
||||
Also, if no date was provided you can check the last edit
|
||||
of said page in the gitea repository.
|
||||
</i>
|
||||
</p>
|
||||
</div>
|
||||
<div>
|
||||
<h2 id="me">Me</h2>
|
||||
<p>
|
||||
My name is Aviv, but I got by the name Rusty(Striker(TheFirst)) online,
|
||||
I like the Rust programming language, have shitty takes,
|
||||
and know the world I was given is broken and immoral(hopefully we could change it one day)
|
||||
</p>
|
||||
</div>
|
||||
<p>
|
||||
I thought I will have more to write here(as of 14/5/22)...
|
||||
</p>
|
||||
|
||||
<footer>
|
||||
<p>
|
||||
Copyright (C) 2022 Aviv "RustyStriker" Romem |
|
||||
Except where otherwise noted.
|
||||
<br>
|
||||
works and publications on this website are licenced under
|
||||
<a href = "https://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA 4.0</a>.
|
||||
<br>
|
||||
Codes are published under
|
||||
<a href = "https://www.gnu.org/licenses/agpl-3.0.html">GNU AGPL v3 or later</a>
|
||||
and JavaScript is also published under
|
||||
<a href = "https://www.gnu.org/licenses/gpl-3.0.html">GNU GPL v3 or later</a>
|
||||
| Except where otherwise noted.
|
||||
</p>
|
||||
</footer>
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
Reference in a new issue