diff options
author | Alexis Hovorka <[email protected]> | 2025-05-12 18:34:49 -0600 |
---|---|---|
committer | Alexis Hovorka <[email protected]> | 2025-05-12 18:34:49 -0600 |
commit | f8814815f8c21f8f0e8e0f77909f991324403f6f (patch) | |
tree | 22cc2867b5bc15bc6eff15c938984693b475a922 | |
parent | 018c1486255a2ebff67df64884ad5a2c1afce19f (diff) |
[feat] Add feed link in page headers
-rw-r--r-- | layouts/page.njk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/layouts/page.njk b/layouts/page.njk index 9bc53ae..13b3433 100644 --- a/layouts/page.njk +++ b/layouts/page.njk @@ -6,6 +6,7 @@ <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="author" content="{{ metadata.author.name }}"> {% if metaDesc %}<meta name="description" content="{{ metaDesc }}">{% endif %} + <link rel="alternate" type="application/atom+xml" href="/feed.xml" title="{{ metadata.title }}" /> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400;1,700&family=Noto+Sans+JP:wght@400;700&display=swap"> |