Add intro and projects section to homepage
This commit is contained in:
parent
41a2dae63e
commit
2ca1db7a61
2 changed files with 14 additions and 0 deletions
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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 %}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue