Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<a class="{{ class }} hover:-translate-y-1 transition-all border p-4 rounded-xl flex items-center gap-2"
href="{{ href }}">
<div class="flex-1 flex flex-col gap-2">
<p class="[font-variant:small-caps] text-xs text-gray-500 flex gap-2 items-center">
<p class="uppercase text-xs text-gray-500 flex gap-2 items-center">
<i class="bi {{ icon_class }}"></i>
<span>{{ label }}</span>
</p>
Expand Down
4 changes: 2 additions & 2 deletions templates/shortcodes/alert.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
{% endif %}

<div class="{{ class }} border p-4 rounded-xl flex-1 flex flex-col gap-2">
<p class="not-prose [font-variant:small-caps] text-xs text-gray-500 flex gap-2 items-center">
<p class="not-prose uppercase text-xs text-gray-500 flex gap-2 items-center">
<i class="{{ icon_class }}"></i>
<span>{{ title }}</span>
<span>{{ title | replace(from="BmMT", to='<span class="[text-transform:none] [font-variant:small-caps]">BmMT</span>') | safe }}</span>
</p>
<div class="prose text-base font-medium">
{{ body | markdown | safe }}
Expand Down
Loading