summaryrefslogtreecommitdiff
path: root/index.html
blob: 02b8f8950b2e42f08f522585a35864e7222eb8ad (plain)
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="description" content="My personal website, made by hand with with love.">
    <meta name="author" content="Ambrose">
    <title>Ambrose's Personal Webpage</title>
    <link rel="Website icon" href="/static/favicon.svg" type="image/svg">
    <link rel="stylesheet" href="styles.css">
    <script src="/static/js/jquery-1.10.2.js"></script>
</head>
<body>
	<h1 class="title">Ambrose's Personal Webpage</h1>
<!--navigation bar-->
<div id="nav-placeholder">

</div>

<script>
$(function(){
  $("#nav-placeholder").load("/static/nav.html");
});
</script>
<!--end of navigation bar-->

<p class="welcome">
Welcome to my webpage! (Ru. Добро пожаловать на мою веб-страницу!) <br>
Hello! I am Ambrose, I'm a hobbyist sysadmin, a big fan of Gnu/Linux and any
UNIX system, and a huge supporter of Free and Open Source software. 
I am also an Orthodox Christian, you can read more about that: <a href="">HERE</a>.
<br><br>

I created this site to share my writing(s), to document my projects, to share
my photography, and as an easy place for people to find my contact info. This
website is made from scratch without any tools such as HUGO. I do use jQuery
for loading in the navbar and footer.<br>
I take pride in having a minimal webpage, but when I do have to use javascript
I will be sure to license it correctly so it can work with Gnu's LibreJS
plugin.<br>
Also this website is made for Desktop users with a capable web browser. One of
the design philosophies for this page is to make it non-mobile friendly. You
shouldn't be browsing the web on one of those things -- one of my design goals
was to make my website difficult to navigate on a touchscreen. 
</p>

<p class="computer">
<h2>My computing information</h2>
<i>I like to switch around how I use computers / operating system(s), so this information has the potential to be
outdated.</i><br>
<b>Operating System</b>
For both my desktop and laptop I use the FSF approved <a href="https://parabola.nu">Gnu/Linux-libre distro Parabola</a>.


</p>

<!--footer-->
<div id="footer-placeholder">

</div>

<script>
$(function(){
  $("#footer-placeholder").load("/static/footer.html");
});
</script>
<!--end of footer-->

</body>
</html>