Recent Activity
Sorted by date · {{ visible_feed_links('https://www.labyricorn.com/feed.xml', 'https://www.labyricorn.com/rss.xml') }}
{% for item_path in this.recent_activity_paths %}
{% set item = site.get(item_path) %}
{% if item %}
{{ item.kicker }}
{{ item.date|dateformat('YYYY.MM.dd') }}
{{ item.summary }}
Read entry →
{% endif %}
{% endfor %}
Featured Projects
Curated work
{% for project in site.query('/projects').filter(F._model == 'project').filter(F.featured == true).order_by('featured_order', '-date').limit(3) %}
{% set devlog = site.get(project.path ~ '/devlog') %}
{% set latest_activity = devlog.children.order_by('-date', '-source_commit_time').first() if devlog else none %}
{{ project.status }}
{{ project.date|dateformat('YYYY.MM.dd') }}
{{ project.summary }}
{% if project.technology_labels %}
{% for technology in project.technology_labels[:4] %}
{% set parts = technology.split('\t', 1) %}
{{ parts[1] if parts|length > 1 else parts[0] }}
{% endfor %}
{% endif %}
{% if latest_activity %}
{% endif %}
{% else %}
Selected projects will appear here.
{% endfor %}
View all projects →