{% extends "layout.askama.html" %} {% block content %}

Welcome to at://advent!

at://advent is a daily challenge to learn atproto in an interactive way. Similar to the advent of code. There are challenges for you to complete by writing code, but instead of strictly writing code you will be completing the challenges on atproto and learning more about it.

For this workshop you will be play testing the challenges for the first six days seeing what works well and what may not work. We want your thoughts and feedback about how it goes.

Tidbits

{% if unlocked_days.len() == 0 %}

No days unlocked yet

Please check back in December when the challenges begin!
{% else %}

Available Challenges

{{ unlocked_days.len() }} day{% if unlocked_days.len() != 1 %}s{% endif %} unlocked
{% for day_status in unlocked_days %} {% match day_status.status %} {% when shared::advent::CompletionStatus::None %} Day {{ day_status.day }} {% when shared::advent::CompletionStatus::PartOne %} Day {{ day_status.day }} {% when shared::advent::CompletionStatus::Both %} Day {{ day_status.day }} {% endmatch %} {% endfor %}
{% endif %} {% endblock %}