stylish, want to add moon phases later >:)

This commit is contained in:
gallant 2022-10-13 23:00:31 -05:00
parent 5bb068d997
commit 248d110640
10 changed files with 104 additions and 9 deletions

View File

@ -0,0 +1,14 @@
+++
title = "The Benefits of Rust"
date = 2022-05-06
+++
# Rust is like C++, but memory safe.
----
<img src="https://doc.rust-lang.org/book/img/ferris/not_desired_behavior.svg">
### But what does this mean?
----
Rust catches unsafe memory practices at compile time and SCREAMS at you to figure it out!

View File

@ -1,6 +0,0 @@
+++
title = "test"
date = 2022-10-12
+++
test

View File

@ -0,0 +1,7 @@
+++
title = "Projects"
sort_by = "date"
template = "blog.html"
page_template = "blog-page.html"
+++

View File

@ -0,0 +1,13 @@
+++
title = "cat-box"
date = 2022-10-13
+++
- Rust
----
Worked on karx's [cat-box](https://git.karx.xyz/karx/catbox)
game engine build SDL2
currently uses vulkan to render
I provided audio capabilities and peer pressure

View File

@ -0,0 +1,7 @@
+++
title = "weather-python"
date = 2022-10-13
+++
- Python
----
#### 1 argument/zip code gets weather and displays it

9
content/projects/yai.md Normal file
View File

@ -0,0 +1,9 @@
+++
title = "You Are (Not) An Idiot"
date = 2022-10-13
+++
- Rust
----
Uses game engine 'cat-box' to recreate the classic You Are An Idiot animation from the 90's
will add video later

25
sass/style.scss Normal file
View File

@ -0,0 +1,25 @@
//Variables
.container {
margin: auto;
width: 75%;
padding: 10%;
}
body {
//background: #0d181c;
background-image: url('siteBackground.png');
color: #d9d7d6;
}
hr {background-color: #d9d7d6;}
li {
list-style-type: "\1F7D5";
color: #78B892;
//font-size: 17px;
}
img {
height: 20%;
width: 20%;
}

BIN
static/siteBackground.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 KiB

View File

@ -2,13 +2,18 @@
<html lang="en">
<head>
<meta charset="utf-8">
<title>Galant</title>
<title>Gallant</title>
<link rel="stylesheet" href="/style.css">
</head>
<body>
<section class="section">
<div class="container">
{% block content %} {% endblock %}
<hr>
<div>
<a href="/">home</a><a href="/projects/">projects</a><a href="/blog/">blog</a>
</div>
</div>
</section>
</body>

View File

@ -1,8 +1,29 @@
{% extends "base.html" %}
{% block content %}
<h1 class="title">
Welcome
Welcome To My Quiet Little Suburban Home
</h1>
<p>Click <a href="{{ get_url(path="@/blog/_index.md") }}">here</a> to see my posts.</p>
<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>
<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>
{% endblock content %}