Add repository-owned project publishing
Deploy production / deploy (push) Successful in 4s

This commit is contained in:
2026-08-11 23:24:55 -07:00
parent 2b4eb9f0f6
commit ec6e21bb25
17 changed files with 1742 additions and 35 deletions
+5 -2
View File
@@ -34,8 +34,11 @@
<div class="entry-meta"><span class="label">{{ item.kicker }}</span><time>{{ item.date|dateformat('YYYY.MM.dd') }}</time></div>
<h2><a href="{{ item|url }}">{{ item.title }}</a></h2>
<p>{{ item.summary }}</p>
{% if item.tags %}<div class="entry-tags">{{ tag_links(item.tags) }}</div>{% endif %}
<a class="read-more" href="{{ item|url }}">Read entry →</a>
{% if item.tags %}
{% if item._model == 'project' %}<div class="technology-list entry-tags">{% for tag in item.technology_tags %}<span>{{ tag }}</span>{% endfor %}</div>
{% else %}<div class="entry-tags">{{ tag_links(item.tags) }}</div>{% endif %}
{% endif %}
<a class="read-more" href="{{ item|url }}">{% if item._model == 'project' %}View project{% else %}Read entry{% endif %} →</a>
</article>
{% endfor %}
</div>