Skip to content

Commit

Permalink
chore: preload fonts 🤷
Browse files Browse the repository at this point in the history
  • Loading branch information
mtib committed Sep 9, 2024
1 parent 069a276 commit 0947150
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/base.html.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@
<title>{% block title %}blog.mtib.dev{% endblock %}</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans:wght@500&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans:wght@500&display=swap" rel="preload" as="style"
onload="this.onload=null;this.rel='stylesheet'">
<noscript>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans:wght@500&display=swap" rel="stylesheet">
</noscript>
<link rel="stylesheet" href="./main.css">
<link rel="icon" href="/assets/m.png">
<meta name="application-name" content="blog.mtib.dev">
Expand Down

0 comments on commit 0947150

Please sign in to comment.