Add a glyph to external links to visually mark them as external
This commit is contained in:
parent
e9fdc71270
commit
26bdc77b9a
@ -2,9 +2,7 @@
|
|||||||
<html lang="{{metadata.site.language}}">
|
<html lang="{{metadata.site.language}}">
|
||||||
<head>
|
<head>
|
||||||
<title>{{ title | safe }} | {{ metadata.site.name }}</title>
|
<title>{{ title | safe }} | {{ metadata.site.name }}</title>
|
||||||
{% if includeFA %}
|
|
||||||
<link rel="stylesheet" type="text/css" href="https://cdn.lewisdale.dev/assets/css/fontawesome.css" />
|
<link rel="stylesheet" type="text/css" href="https://cdn.lewisdale.dev/assets/css/fontawesome.css" />
|
||||||
{% endif %}
|
|
||||||
{% if includePrism %}
|
{% if includePrism %}
|
||||||
<link rel="stylesheet" type="text/css" href="https://cdn.lewisdale.dev/assets/css/prism.css" />
|
<link rel="stylesheet" type="text/css" href="https://cdn.lewisdale.dev/assets/css/prism.css" />
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -80,3 +80,15 @@ aside {
|
|||||||
max-width: 50ch;
|
max-width: 50ch;
|
||||||
padding: var(--space-size-xs);
|
padding: var(--space-size-xs);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a[target="_blank"]::after {
|
||||||
|
content: " \f08e";
|
||||||
|
font-family: "font awesome 6 free";
|
||||||
|
font-style: normal;
|
||||||
|
font-variant: normal;
|
||||||
|
text-rendering: auto;
|
||||||
|
font-weight: 900;
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
font-size: var(--text-size-xs);
|
||||||
|
vertical-align: super;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user