mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-01-23 01:40:10 +00:00
14 lines
387 B
Plaintext
14 lines
387 B
Plaintext
<article id={{ definition.data.slug }}>
|
|
<h3>{{ definition.data.title}}</h3>
|
|
<p>{{ definition.data.flag }}</p>
|
|
{# <p>{{ definition.data.alt_words }}</p> #}
|
|
{%- if definition.data.alt_words -%}
|
|
<h4>Alt words</h4>
|
|
<ul class="list-semicolon">
|
|
{% for word in definition.data.alt_words %}
|
|
<li>{{ word }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
</article>
|