This commit is contained in:
rawleyIfowler
2022-02-06 17:33:47 -06:00
commit 4389b07f39
16 changed files with 461 additions and 0 deletions

9
templates/footer.tmpl Normal file
View File

@@ -0,0 +1,9 @@
<!--footer.html-->
<div class="footer">
<p class="footer-text">This site is powered by:</p>
<a href="https://www.openbsd.org/">
<img src="https://www.openbsd.org/images/banner1.gif" alt="Powered by OpenBSD!" width="150px" height="50px"/>
</a>
</div>
</body>
</html>

13
templates/header.tmpl Normal file
View File

@@ -0,0 +1,13 @@
<!--header.html-->
<!DOCTYPE html>
<html>
<head>
<meta lang="en">
<meta charset="UTF-8">
<meta name="keywords" content="blog resume rawley-fowler rawley fowler Rawley Fowler portfolio">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="/static/index.css" rel="stylesheet" type="text/css">
<title>rawley.xyz</title>
</head>
<body>
{{ template "nav.tmpl" . }}

12
templates/index.tmpl Normal file
View File

@@ -0,0 +1,12 @@
{{ template "header.tmpl" . }}
<h2>My name is Rawley!</h2>
<p>
I am an independent full-stack developer from Canada. Currently pursuing a degree in Computer Science, with hopes of participating in a graduate program.
</p>
<p>
I am a GNU/Linux and OpenBSD enthusiast. I am active in both the Debian and Void GNU/Linux communities. My favourite programming languages are Go and Clojure. You can check out my work on <a href="https://gitlab.com/rawleyIfowler">GitLab</a>. I am currently working on an open-source community based blogging network called <a href="https://gitlab.com/xrn">xrn</a>.
</p>
<p>
When I'm not programming, I'm either reading, cooking, playing table-top games, or walking my dog.
</p>
{{ template "footer.tmpl" . }}

20
templates/nav.tmpl Normal file
View File

@@ -0,0 +1,20 @@
<!--nav.html-->
<div class="header">
<h1 class="header-title">
<a href="/">Rawley.xyz</a>
</h1>
<div class="nav-bar">
<div>
<a class="nav-item" href="/blog">blog</a>
</div>
<div>
<a class="nav-item" href="/resume">resume</a>
</div>
<div>
<a class="nav-item" href="/contact">contact</a>
</div>
<div>
<a class="nav-item" href="https://gitlab.com/rawleyIfowler">software</a>
</div>
</div>
</div>

7
templates/not_found.tmpl Normal file
View File

@@ -0,0 +1,7 @@
<!--not_found.html-->
{{ template "header.tmpl" . }}
<h2>404 Not Found :(</h2>
<p>
Click <a href="/">here</a> to return home.
</p>
{{ template "footer.tmpl" . }}

30
templates/resume.tmpl Normal file
View File

@@ -0,0 +1,30 @@
<!--resume.tmpl-->
{{ template "header.tmpl" . }}
<h2>My resume</h2>
<p>
<a href="/static/Resume.pdf">View my resume (pdf).</a>
</p>
<p class="skill-keywords">
<i>GNU/Linux</i>
<i>Debian</i>
<i>OpenBSD</i>
<i>Go</i>
<i>Clojure</i>
<i>Git</i>
<i>Gentoo</i>
<i>Java</i>
<i>NGiNX</i>
<i>Vim</i>
<i>C/C++</i>
<i>NetBSD</i>
<i>JavaScript</i>
<i>HTML</i>
<i>CSS</i>
<i>Unix</i>
<i>Vue</i>
<i>MariaDB</i>
<i>Korn Shell</i>
<i>Bash</i>
<i>Lua</i>
</p>
{{ template "footer.tmpl" . }}