This commit is contained in:
@@ -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 %}
|
||||
|
||||
Reference in New Issue
Block a user