{% extends "base.html" %} {% block content %}

Welcome Travellers!

Welcome to HitchHiker Linux, a small distribution that makes few assumptions on end use and strives to remain faithful to the traditional Unix way. For more information please visit the About page, or feel free to check out the Documentation.

Site News

{% set site_news = get_section(path="news/_index.md") | get(key="pages") | sort(attribute="date") | filter(attribute="taxonomies.categories", value=["Site News"]) | slice(end=3) %} {% for page in site_news %}
{{ page.title }} {% if page.date %}
{{ page.date }}
{% endif %} {% if page.summary %}

{{ page.summary | markdown(inline=true) | safe }}...

{% endif %} Read More ->
{% endfor %} {% endblock content %}