Improved blog section
This commit is contained in:
parent
9aea7c7754
commit
f408c1fa97
@ -1,7 +1,6 @@
|
||||
---
|
||||
title: Blog
|
||||
sort_by: date
|
||||
paginate_by: 10
|
||||
extra:
|
||||
inject_blog_posts: true
|
||||
---
|
||||
@ -9,5 +8,3 @@ extra:
|
||||
## Blog posts
|
||||
|
||||
I write about software, hardware, life, and school. ([RSS](/rss.xml))
|
||||
|
||||
<br>
|
22
content/contact.md
Normal file
22
content/contact.md
Normal file
@ -0,0 +1,22 @@
|
||||
---
|
||||
title: Contact
|
||||
description: Here is how you can reach me
|
||||
---
|
||||
|
||||
|
||||
Want to get in touch? Feel free to send me an email at [mail@va3zza.com](mailto:mail@va3zza.com). If you'd prefer a more casual chat, message me on Discord at `ewpratten#9114`.
|
||||
|
||||
## Me, elsewhere
|
||||
|
||||
If you'd rather find me somewhere else, here's a list of platforms I am reasonably active on:
|
||||
|
||||
- [LinkedIn](https://www.linkedin.com/in/ewpratten/)
|
||||
- [GitHub](https://github.com/ewpratten)
|
||||
- [Instagram](https://www.instagram.com/evanpratten/)
|
||||
- [Twitter](https://twitter.com/ewpratten/)
|
||||
- [QRZ](https://qrz.com/db/va3zza)
|
||||
- [Spotify](https://open.spotify.com/artist/1aLNEmgqBJkhfkEZvf8Vh5)
|
||||
- [Apple Music](https://music.apple.com/us/artist/evan-pratten/1611566708)
|
||||
- [YouTube](https://www.youtube.com/channel/UCrHT3Lt0Mg90bspbMHJfTcA")
|
||||
- [AVRFreaks](https://www.avrfreaks.net/users/ewpratten)
|
||||
- [Chief Delphi](https://www.chiefdelphi.com/u/ewpratten)
|
@ -78,7 +78,8 @@
|
||||
<p>
|
||||
<a href="/">Home</a> |
|
||||
<a href="/blog">Blog</a> |
|
||||
<a href="/hobbies">Hobbies</a>
|
||||
<a href="/contact">Contact</a>
|
||||
{# <a href="/hobbies">Hobbies</a> #}
|
||||
{# <a href="/whois">WHOIS</a> #}
|
||||
{# <a href="/rfc">RFC</a> #}
|
||||
</p>
|
||||
|
@ -51,36 +51,28 @@
|
||||
|
||||
{# Blog posts #}
|
||||
{% if section.extra.inject_blog_posts %}
|
||||
<div>
|
||||
{% for page in paginator.pages %}
|
||||
{% if not page.extra.hidden %}
|
||||
<a href="{{page.path}}" class="blog-post-listing-item">
|
||||
<div>
|
||||
<h4 {%if page.draft%}style="color:red;" {%endif%}>{{page.date | date(format="%b %d, %Y")}}</h4>
|
||||
<h1>{{page.title}}</h1>
|
||||
{% if page.extra.excerpt %}
|
||||
<p>{{page.extra.excerpt}}</p>
|
||||
{% endif %}
|
||||
</div>
|
||||
</a>
|
||||
<br>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</div>
|
||||
<ul style="margin:0">
|
||||
<div>
|
||||
{# Posts shall be broken down by year #}
|
||||
{% set title_year = "3000" %}
|
||||
{% for page in section.pages %}
|
||||
{% if not page.extra.hidden %}
|
||||
{% set page_year = page.date | date(format="%Y")%}
|
||||
{% if page_year != title_year %}
|
||||
{% set_global title_year = page_year %}
|
||||
</ul>
|
||||
<h2>{{title_year}}</h2>
|
||||
<ul>
|
||||
{% endif %}
|
||||
|
||||
<div style="text-align: center;">
|
||||
{% if paginator.previous %}
|
||||
<a class="pn-previous" href="{{ paginator.previous }}">PREV</a>
|
||||
{% endif %}
|
||||
{% if paginator.previous and paginator.next %}
|
||||
<span> • </span>
|
||||
{% endif %}
|
||||
{% if paginator.next %}
|
||||
<a class="pn-next" href="{{ paginator.next }}">NEXT</a>
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
{% endif %}
|
||||
<li class="blog-post-li"><span style="color:{% if page.draft %}red{% else %}gray{% endif %};">{{page.date}}:</span> <a
|
||||
href="{{page.path}}">{{page.title}}</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<br><br>
|
||||
{% endif %}
|
||||
|
||||
{# RFCs #}
|
||||
{% if section.extra.inject_rfcs %}
|
||||
|
Loading…
x
Reference in New Issue
Block a user