trwnh.com/hugo/layouts/partials/styles/external-links.html

15 lines
193 B
HTML
Raw Normal View History

2022-12-03 21:40:21 +00:00
<style>
a[href^="http"]:after {
content: "🡕";
}
a[href^="{{.Site.BaseURL}}"]:after
{
display: none !important;
}
a[href^="http://localhost"]:after
{
display: none !important;
}
</style>