Added projects and sites page

This commit is contained in:
mossfet 2023-04-02 22:52:59 +01:00
parent 64fff61ba7
commit 45c2888df8
7 changed files with 52 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/public

View File

@ -0,0 +1 @@
# Projects I have made

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

@ -0,0 +1,9 @@
---
title: Mossfet's Life
draft: true
---
Mossfet's Life is a [Conway's Game of Life](https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life) implementation for the GNOME Platform, written with GTK4 and libadwaita. It uses Rust, and the [Relm4](https://relm4.org/) library to abstract over GTK's Rust bindings.
Source is available [here](https://git.solarpunk.moe/mossfet/game-of-life-gui)

11
content/sites/_index.md Normal file
View File

@ -0,0 +1,11 @@
# Sites I like
Sites that I enjoyed visiting
## Non-friends
[Permacomputing Wiki](https://permacomputing.net/)
## Friends
[TakeV's site](https://ta-kev.digital/)

View File

@ -6,6 +6,8 @@
<li><a href="/">Home</a></li>
<li><a href="/blog">Blog</a></li>
<li><a href="/links">Links</a></li>
<li><a href="/projects">Projects</a></li>
<li><a href="/sites">Good Sites</a></li>
<li><a href="https://git.solarpunk.moe/mossfet/site">Source</a></li>
</ul>
</nav>

View File

@ -0,0 +1,16 @@
{{ define "main" }}
<div class = "container border">
<div class = "section">
<div class = "content">
<h1 class="title">{{ .Title }}</h1>
{{ .Content }}
{{ range .Pages }}
<ul>
<li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
</ul>
{{ end }}
</div>
</div>
</div>
{{ end }}

View File

@ -0,0 +1,12 @@
{{ define "main" }}
<section class="section border">
<article>
<div class="blog-header">
<h1 class="blog-title">{{ .Title }}</h1>
</div>
<div class="blog-content">
{{ .Content }}
</div>
</article>
</section>
{{ end }}