-
Notifications
You must be signed in to change notification settings - Fork 363
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
text-nowrap on subscribe/archives links for mailinglists
Introduces a shortcode for the block that contains the `(subscribe | archives)` links for each mailing list. This intends to prevent odd line-breakage within those blocks. fixes #1478
- Loading branch information
1 parent
9a630de
commit 428b2ca
Showing
2 changed files
with
12 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
themes/xmpp.org/layouts/shortcodes/subscribe-archive-block.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<span class="text-nowrap"> | ||
(<a href="{{- .Get "subscribe" -}}" target="_blank" class="icon-link">subscribe<i class="fa-solid fa-arrow-up-right-from-square fa-xs opacity-75 me-1"></i></a> | ||
| | ||
<a href="{{- .Get "archives" -}}" target="_blank" class="icon-link">archives<i class="fa-solid fa-arrow-up-right-from-square fa-xs opacity-75 me-1"></i></a>) | ||
</span> |