Add projects to shared tag discovery
Deploy production / deploy (push) Successful in 3s

This commit is contained in:
2026-08-11 23:43:41 -07:00
parent ec6e21bb25
commit 14cec442fa
24 changed files with 235 additions and 46 deletions
+6 -5
View File
@@ -1,4 +1,5 @@
{% extends "base.html" %}
{% from "macros/tag-links.html" import tag_links, taxonomy_labels with context %}
{% block body %}
{% set devlog = site.get(this.path ~ '/devlog') %}
<article class="project-page">
@@ -48,10 +49,10 @@
<dd>{{ this.repository_license }}</dd>
</div>
</div>
{% if this.repository_languages %}
{% if this.repository_language_labels %}
<div class="post-info-row">
<dt>Languages</dt>
<dd class="technology-list">{% for language in this.repository_languages %}<span>{{ language }}</span>{% endfor %}</dd>
<dd class="technology-list">{{ taxonomy_labels(this.repository_language_labels) }}</dd>
</div>
{% endif %}
<div class="repository-pair repository-counts">
@@ -71,11 +72,11 @@
</aside>
</div>
{% if this.technology_tags %}
{% if this.technology_labels %}
<section class="project-technologies">
<div class="shell">
<div class="section-heading"><span>Built with</span><span>{{ this.technology_tags|length }} technologies</span></div>
<div class="technology-list project-technology-list">{% for tag in this.technology_tags %}<span>{{ tag }}</span>{% endfor %}</div>
<div class="section-heading"><span>Built with</span><span>{{ this.technology_labels|length }} technologies</span></div>
<div class="technology-list project-technology-list">{{ taxonomy_labels(this.technology_labels) }}</div>
</div>
</section>
{% endif %}