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 3fe80e9 commit 363751dCopy full SHA for 363751d
1 file changed
src/_includes/bio.njk
@@ -22,12 +22,10 @@
22
</div>
23
24
<div class="space-y-4 text-sm border-t border-[var(--border-color)] pt-6">
25
- {% if location %}
+ {% if location | trim %}
26
<div class="flex items-center gap-3">
27
<span class="text-lg">📍</span>
28
- <span class="text-[var(--text-muted)]">
29
- {% if location and country %}{{ location }}, {{ country }}{% elif location %}{{ location }}{% endif %}
30
- </span>
+ <span class="text-[var(--text-muted)]">{{ location | trim }}{% if country %}, {{ country }}{% endif %}</span>
31
32
{% endif %}
33
0 commit comments