-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
34 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,36 @@ | ||
<!doctype html> | ||
<html lang="{{ metadata.language }}"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>{{ title or metadata.title }}</title> | ||
<meta name="description" content="{{ description or metadata.description }}"> | ||
|
||
{#- Atom and JSON feeds included by default #} | ||
<link rel="alternate" href="/feed/feed.xml" type="application/atom+xml" title="{{ metadata.title }}"> | ||
<link rel="alternate" href="/feed/feed.json" type="application/json" title="{{ metadata.title }}"> | ||
|
||
{#- Add an arbitrary string to the bundle #} | ||
{%- css %}* { box-sizing: border-box; }{% endcss %} | ||
{#- Add the contents of a file to the bundle #} | ||
{%- css %}{% include "public/css/index.css" %}{% endcss %} | ||
{#- Or add from node_modules #} | ||
{# {%- css %}{% include "node_modules/prismjs/themes/prism-okaidia.css" %}{% endcss %} #} | ||
|
||
{#- Render the CSS bundle using Inlined CSS (for the fastest site performance in production) #} | ||
<style>{% getBundle "css" %}</style> | ||
{#- Renders the CSS bundle using a separate file, if you can't set CSP directive style-src: 'unsafe-inline' #} | ||
{#- <link rel="stylesheet" href="{% getBundleFileUrl "css" %}"> #} | ||
</head> | ||
<body> | ||
<h1>#happenings</h1> | ||
<main id="skip"> | ||
{{ content | safe }} | ||
</main> | ||
|
||
<footer></footer> | ||
|
||
<!-- This page `{{ page.url | htmlBaseUrl }}` was built on {% currentBuildDate %} --> | ||
</body> | ||
</html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>{{ title or metadata.title }}</title> | ||
<meta | ||
name="description" content="{{ description or metadata.description }}"> {#- Atom and JSON feeds included by default #} | ||
<link rel="alternate" href="/feed/feed.xml" type="application/atom+xml" title="{{ metadata.title }}"> | ||
<link | ||
rel="alternate" href="/feed/feed.json" type="application/json" title="{{ metadata.title }}"> {#- Add an arbitrary string to the bundle #} | ||
{%- css %}* { box-sizing: border-box; }{% endcss %} | ||
{#- Add the contents of a file to the bundle #} | ||
{%- css %}{% include "public/css/index.css" %}{% endcss %} | ||
{#- Or add from node_modules #} | ||
{# {%- css %}{% include "node_modules/prismjs/themes/prism-okaidia.css" %}{% endcss %} #} | ||
{#- Render the CSS bundle using Inlined CSS (for the fastest site performance in production) #}<style> | ||
{% getBundle "css" %}</style> | ||
{#- Renders the CSS bundle using a separate file, if you can't set CSP directive style-src: 'unsafe-inline' #} | ||
{#- <link rel="stylesheet" href="{% getBundleFileUrl "css" %}"> #} | ||
</head> | ||
<body> | ||
<h1>#happenings</h1> | ||
<main id="skip"> | ||
{{ content | safe }} | ||
</main> | ||
<footer></footer> | ||
<!-- This page `{{ page.url | htmlBaseUrl }}` was built on {% currentBuildDate %} --> | ||
<script> | ||
window.va = window.va || function () { | ||
(window.vaq = window.vaq || []).push(arguments); | ||
}; | ||
</script> | ||
<script defer src="/_vercel/insights/script.js"></script> | ||
</body> | ||
</html> |