improvement: add about page and logos.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
James Harton 2023-08-16 14:03:48 +12:00
parent 7e75e2874c
commit e872f98dc5
Signed by: james
GPG key ID: 90E82DAA13F624F4
6 changed files with 37 additions and 10 deletions

View file

@ -3,22 +3,19 @@ compile_sass = true
build_search_index = false
generate_feed = true
theme = "anatole-zola"
highlight_theme = "base16-ocean-light"
title = "Hartonia Planitia"
title = "James Harton"
description = "Nerd, maker and quadcopter breaker from Wairarapa, Aotearoa."
taxonomies = [
{name = "tags"},
]
[markdown]
# Whether to do syntax highlighting
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
highlight_code = true
highlight_theme = "base16-ocean-light"
[extra]
# Put all your custom variables here
title = "Hartonia Planitia"
description = "My home page lol"
author = "James Harton"
[extra.show]
@ -35,3 +32,9 @@ links = "Links"
date_format = "%Y-%m-%d"
next_page = "Next Page"
last_page = "Last Page"
[extra.social]
github = "jimsynz"
linkedin = "james-harton-35013418a"
gitlab = "jimsy"
mastodon = "jmshrtn@social.coop"

View file

@ -1,9 +1,9 @@
+++
title = "Hartonia Planitia"
title = "Home"
template = "index.html"
transparent = true
sort_by = "date"
paginate_by = 10
+++
WAT
Hello, World!

View file

@ -4,4 +4,22 @@ paginage_by = 0
template = "about.html"
+++
About this site.
Hi, I'm James.
I'm a software engineer based in [Wairarapa, Aotearoa](https://en.wikipedia.org/wiki/Wairarapa). I've previously been a sysop, sysadmin, network engineer, founder and consultant.
My interests include but are not limited to:
* Programming in [Elixir](https://elixir-lang.org/).
* Programming in [Rust](https://www.rust-lang.org/).
* [Self-hosting](https://en.wikipedia.org/wiki/Self-hosting_(web_services)).
* Building [programming languages](https://code.harton.nz/james/outrun).
* Building [Robots](https://www.hackster.io/jmshrtn/augie-the-hexapod-robot-8e5125).
* Electronics.
* Radio-control planes, helicopters and quadcopters.
I am currently a Principal Consultant at [Alembic](https://alembic.com.au) and a member of the [Ash](https://ash-hq.org) core team.
My pronouns are **he**/**him**.

BIN
static/images/avatar.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

BIN
static/images/logo@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 188 KiB

6
templates/basic.html Normal file
View file

@ -0,0 +1,6 @@
{% extends "anatole-zola/templates/basic.html" %}
{% block more_social_link %}
<a href="https://code.harton.nz/james" aria-label="Go to ForgeFed instance">
<i class="fa-solid fa-code-branch"></i>
</a>
{% endblock %}