Add intro and projects section to homepage

This commit is contained in:
Graham McIntire 2026-02-25 17:14:46 -06:00
parent 41a2dae63e
commit 2ca1db7a61
No known key found for this signature in database
2 changed files with 14 additions and 0 deletions

View file

@ -1,3 +1,5 @@
+++
title = "W5ISP"
+++
I'm Graham McIntire (W5ISP), a site reliability and security engineer based in Blue Ridge, Texas. I like building things and figuring out how they work. Licensed amateur radio operator since 1996 and plain text enthusiast.

View file

@ -12,6 +12,18 @@
</div>
</section>
{% set projects_section = get_section(path="projects/_index.md") %}
{% if projects_section.pages | length > 0 %}
<h2>Projects</h2>
<ul>
{% for page in projects_section.pages %}
<li>
<a href="{{ page.extra.url }}">{{ page.title }}</a> — {{ page.description }}
</li>
{% endfor %}
</ul>
{% endif %}
{% set blog_section = get_section(path="blog/_index.md") %}
{% if blog_section.pages | length > 0 %}
{% set latest = blog_section.pages | first %}