tangled
alpha
login
or
join now
arabica.social
/
arabica
7
fork
atom
Coffee journaling on ATProto (alpha)
alpha.arabica.social
coffee
7
fork
atom
overview
issues
pulls
pipelines
fix: styling fix for brewer feed cards
pdewey.com
2 weeks ago
9922f628
f2432c18
verified
This commit was signed with the committer's
known signature
.
pdewey.com
SSH Key Fingerprint:
SHA256:ePOVkJstqVLchGK8m9/OGQG+aFNHD5XN3xjvW9wKCA4=
+6
-1
1 changed file
expand all
collapse all
unified
split
internal
web
pages
feed.templ
+6
-1
internal/web/pages/feed.templ
···
502
502
<div class="text-base mb-2">
503
503
<span class="font-bold text-brown-900">{ item.Brewer.Name }</span>
504
504
</div>
505
505
+
if item.Brewer.BrewerType != "" {
506
506
+
<div class="text-xs text-brown-600 mt-1 flex flex-wrap gap-x-2 gap-y-0.5">
507
507
+
<span class="inline-flex items-center gap-0.5">🫖 { item.Brewer.BrewerType }</span>
508
508
+
</div>
509
509
+
}
505
510
if item.Brewer.Description != "" {
506
506
-
<div class="text-sm text-brown-800 italic">"{ item.Brewer.Description }"</div>
511
511
+
<div class="mt-2 text-sm text-brown-800 italic">"{ item.Brewer.Description }"</div>
507
512
}
508
513
</div>
509
514
}