Added projects and sites page
This commit is contained in:
parent
64fff61ba7
commit
45c2888df8
7 changed files with 52 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
/public
|
1
content/projects/_index.md
Normal file
1
content/projects/_index.md
Normal file
|
@ -0,0 +1 @@
|
|||
# Projects I have made
|
9
content/projects/life.md
Normal file
9
content/projects/life.md
Normal 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
11
content/sites/_index.md
Normal 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/)
|
|
@ -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>
|
||||
|
|
16
themes/sitetheme/layouts/projects/list.html
Normal file
16
themes/sitetheme/layouts/projects/list.html
Normal 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 }}
|
12
themes/sitetheme/layouts/projects/single.html
Normal file
12
themes/sitetheme/layouts/projects/single.html
Normal 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 }}
|
Loading…
Reference in a new issue