!
This commit is contained in:
gallant 2022-10-25 16:02:12 -05:00
parent 78df10dbd0
commit f33c7bbd24
4 changed files with 24 additions and 26 deletions

1
CNAME Normal file
View File

@ -0,0 +1 @@
www.gallant.lol

View File

@ -3,6 +3,7 @@
.container {
margin: auto;
width: 75%;
height: 75%;
padding: 12%;
}
@ -41,19 +42,18 @@ img {
height: 20%;
width: 20%;
}
div {width: 50%;}
a {
font-size: 100%;
}
/* unvisited link */
a:link {
a:visited {
color: #E9967E;
}
/* visited link */
a:visited {
a:link {
color: #BC83E3;
}
@ -71,3 +71,5 @@ a:active {
font-size: 170%;
//padding: 1px 0.5em 1px;
}

View File

@ -2,6 +2,7 @@
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gallant</title>
<link rel="stylesheet" href="/style.css">
</head>
@ -9,10 +10,10 @@
<body>
<section class="section">
<div class="container">
<script src="/lunar.js"></script>
{% block content %} {% endblock %}
<hr>
<div>
<div style="text-align: center">
<a href="/">home</a><a href="/projects/">projects</a><a href="/blog/">blog</a>
</div>
</div>

View File

@ -1,32 +1,26 @@
{% extends "base.html" %}
{% block content %}
<h1 class="title">
Welcome To My Quiet Little Suburban Home
</h1>
<hr>
Hey I'm Gallant, I work with mostly Rust.
<div>
<hr>
<h4>Stuff:</h4>
<ul>
<li><a href="https://git.karx.xyz/gallant/">My Git</a></li>
<li><a href="mailto:gallantcrusader@proton.me">Reach Out</a></li>
</ul>
<hr>
<h4>Pals:</h4>
<ul>
<li><a href="https://karx.xyz/">karx</a></li>
<li><a href="https://lemonsh.moe">lemon</a></li>
<li><a href="https://famfo.xyz">famfo</a></li>
<li><a href="https://missingpiece.dev/">missing</a></li>
<!-- <li><a href=""></a></li> -->
</ul>
</div>
<div>
<script src="/lunar.js"> writePhase();</script>
</div>
<h4>Stuff:</h4>
<ul>
<li><a href="https://git.karx.xyz/gallant/">My Git</a></li>
<li><a href="mailto:gallantcrusader@proton.me">Reach Out</a></li>
</ul>
<h4>Pals:</h4>
<ul>
<li><a href="https://karx.xyz/">karx</a></li>
<li><a href="https://lemonsh.moe">lemon</a></li>
<li><a href="https://famfo.xyz">famfo</a></li>
<li><a href="https://missingpiece.dev/">missing</a></li>
<!-- <li><a href=""></a></li> -->
</ul>
{% endblock content %}