diff options
| author | seth <[email protected]> | 2024-10-09 10:59:13 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-10-09 10:59:13 -0400 |
| commit | d17bca56238e9ca326d60e58230d0d354f23bfe8 (patch) | |
| tree | 12aee4c37a1490914e6307ce1b0023be2df93105 /templates/partials/head.html | |
| parent | 7d6495399d5e1ba429a339de1c3a00f121e89305 (diff) | |
back to astro for hopefully the last time (#146)
Diffstat (limited to 'templates/partials/head.html')
| -rw-r--r-- | templates/partials/head.html | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/templates/partials/head.html b/templates/partials/head.html deleted file mode 100644 index fa2c30d..0000000 --- a/templates/partials/head.html +++ /dev/null @@ -1,22 +0,0 @@ -<head> - <meta charset="UTF-8" /> - {% if page.title %} - {% set title = page.title %} - {% elif section.title %} - {% set title = section.title %} - {% else %} - {% set title = config.title %} - {% endif %} - <title>{{ title }}</title> - <meta name="viewport" content="width=device-width,initial-scale=1" /> - {% if page.description %} - {% set description = page.description %} - {% elif section.description %} - {% set description = section.description %} - {% else %} - {% set description = config.description %} - {% endif %} - <meta name="description" content="{{ description }}" /> - <link rel="sitemap" href="sitemap.xml" /> - <link rel="stylesheet" href="/style.css" /> -</head> |
