We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05fe310 commit 80bdf0fCopy full SHA for 80bdf0f
1 file changed
src/index.njk
@@ -31,10 +31,9 @@ layout: false
31
{% set country = person.data.country %}
32
{% set location = person.data.location %}
33
{% if location or country %}
34
- <span class="shrink-0 text-[10px] bg-[var(--bg-footer)] text-[var(--text-muted)] px-2 py-1 rounded font-bold uppercase border border-[var(--border-color)]">
35
- {{ location }}
36
- {% if location and country %}<br>{% endif %}
37
- {{ country }}
+ <span class="flex flex-col items-center shrink-0 text-[10px] bg-[var(--bg-footer)] text-[var(--text-muted)] px-2 py-1 rounded font-bold uppercase border border-[var(--border-color)]">
+ {% if location %}<span>{{ location }}</span>{% endif %}
+ {% if country %}<span>{{ country }}</span>{% endif %}
38
</span>
39
{% endif %}
40
</div>
0 commit comments