3/22
This commit is contained in:
parent
9936e3b4b6
commit
277fea5d7c
26
blog/index.html
Normal file
26
blog/index.html
Normal file
@ -0,0 +1,26 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset = "UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Liam Waldron - Blog</title>
|
||||
<link type="text/css" rel="stylesheet" href="../css/everforest.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<div class="sidenav">
|
||||
<a href="../index.html">Home</a>
|
||||
<a href="../blog/index.html">Blog</a>
|
||||
<a href="../projects/index.html">Projects</a>
|
||||
<a href="../photo.html">Photography</a>
|
||||
</div>
|
||||
|
||||
<div class="hero-image">
|
||||
<div class="hero-text">
|
||||
<h1>Template Page<h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="main">
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
@ -291,14 +291,16 @@ button {
|
||||
border-left-style: solid;
|
||||
border-width: 8px;
|
||||
padding: 12px 28px;
|
||||
border-color: #88C0D0;
|
||||
border-color: #374145;
|
||||
border-radius: 5px;
|
||||
background-color: #434C5E;
|
||||
color: #ECEFF4;
|
||||
background-color: #2e383c;
|
||||
color: #d3c6aa;
|
||||
}
|
||||
|
||||
button:hover {
|
||||
background-color: #4C566A;
|
||||
background-color: #1e2326;
|
||||
border-color: #e67e80;
|
||||
color: #e67e80;
|
||||
}
|
||||
|
||||
hr.dotted {
|
||||
|
30
index.html
30
index.html
@ -11,6 +11,7 @@
|
||||
<a href="index.html">Home</a>
|
||||
<a href="blog/index.html">Blog</a>
|
||||
<a href="projects/index.html">Projects</a>
|
||||
<a href="photo.html">Photography</a>
|
||||
</div>
|
||||
|
||||
<div class="hero-image">
|
||||
@ -20,4 +21,31 @@
|
||||
</div>
|
||||
|
||||
<div class="main">
|
||||
<h2>
|
||||
<h2>About Me</h2>
|
||||
<p>My name is Liam Waldron, and I am a student of Cybersecurity, Computer
|
||||
Science, and Theology at Assumption University.</p>
|
||||
<p>I taught myself how to program in my Freshman year of High School,
|
||||
starting with BASH and Python, then moving into C. I am now working with
|
||||
C++ in my university's Computer Science courses, and I hope to learn Rust
|
||||
soon.</p>
|
||||
<p>In addition to programming, I am also interested in Theology,
|
||||
photography, going to the gym, and blasting metal in my room (Slipknot is
|
||||
a current favorite of mine).</p>
|
||||
<p>I created this website not only so I could have a place to share my
|
||||
projects with the world, but also to share various opinions of mine, which
|
||||
I hope will be insightful to people.</p>
|
||||
<p>Stay blessed,</p>
|
||||
<p><span class="tab"></span>-Liam</p>
|
||||
<h2>Links</h2>
|
||||
<button onclick="window.location.href=
|
||||
'https://www.linkedin.com/in/liam-waldron-358322303'
|
||||
;">
|
||||
My LinkedIn
|
||||
</button>
|
||||
</div>
|
||||
<footer>
|
||||
<p>Copyright (C) 2025 Liam Waldron</p>
|
||||
<p>Linux (R) is a registered trademark of Linus Torvalds.</p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
14
mkpage.sh
Executable file
14
mkpage.sh
Executable file
@ -0,0 +1,14 @@
|
||||
#!/bin/sh
|
||||
|
||||
usage() {
|
||||
printf "usage: ${0} NEW_PAGE_NAME\n"
|
||||
}
|
||||
|
||||
if [ "${1}" == "" ]; then
|
||||
usage "$@"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
printf "Creating new page...\n"
|
||||
cp -v templ.html ${1}
|
||||
printf "Done.\n"
|
26
photo.html
Normal file
26
photo.html
Normal file
@ -0,0 +1,26 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset = "UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Liam Waldron - Photos</title>
|
||||
<link type="text/css" rel="stylesheet" href="css/everforest.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<div class="sidenav">
|
||||
<a href="index.html">Home</a>
|
||||
<a href="blog/index.html">Blog</a>
|
||||
<a href="projects/index.html">Projects</a>
|
||||
<a href="photo.html">Photography</a>
|
||||
</div>
|
||||
|
||||
<div class="hero-image">
|
||||
<div class="hero-text">
|
||||
<h1>Template Page<h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="main">
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
26
projects/index.html
Normal file
26
projects/index.html
Normal file
@ -0,0 +1,26 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset = "UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Liam Waldron - Projects</title>
|
||||
<link type="text/css" rel="stylesheet" href="../css/everforest.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<div class="sidenav">
|
||||
<a href="../index.html">Home</a>
|
||||
<a href="../blog/index.html">Blog</a>
|
||||
<a href="../projects/index.html">Projects</a>
|
||||
<a href="../photo.html">Photography</a>
|
||||
</div>
|
||||
|
||||
<div class="hero-image">
|
||||
<div class="hero-text">
|
||||
<h1>Template Page<h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="main">
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
26
templ.html
Normal file
26
templ.html
Normal file
@ -0,0 +1,26 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset = "UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Liam Waldron - Home</title>
|
||||
<link type="text/css" rel="stylesheet" href="css/everforest.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<div class="sidenav">
|
||||
<a href="index.html">Home</a>
|
||||
<a href="blog/index.html">Blog</a>
|
||||
<a href="projects/index.html">Projects</a>
|
||||
<a href="photo.html">Photography</a>
|
||||
</div>
|
||||
|
||||
<div class="hero-image">
|
||||
<div class="hero-text">
|
||||
<h1>Template Page<h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="main">
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user