First pass of what I'd call "usable" versions of the pages: - Index - About - Tickets There's some more work to be done in the year_con partial to represent each of the conference years. The biggest change of this commit by far is the introduction/commonization of the partial 'features.html'. This is the behemoth of a partial that effectively gives us the options to show slide style content. At some point it might be advantageous to break it apart more, but it's relatively straightforward to include in a layout and start putting together pages.
62 lines
1.3 KiB
HTML
62 lines
1.3 KiB
HTML
<meta charset="utf-8" />
|
|
|
|
<!-- responsive meta -->
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1, maximum-scale=5" />
|
|
|
|
<!-- theme meta -->
|
|
<meta name="theme-name" content="handmade" />
|
|
|
|
<!-- favicon -->
|
|
{{ partialCached "favicon" . }}
|
|
|
|
|
|
<!-- manifest -->
|
|
{{ partialCached "manifest" . }}
|
|
|
|
|
|
<!-- site verifications -->
|
|
{{ partialCached "site-verifications.html" . }}
|
|
|
|
|
|
<!-- opengraph and twitter card -->
|
|
{{ partial "basic-seo.html" . }}
|
|
|
|
|
|
<!-- custom script -->
|
|
{{ partialCached "custom-script.html" . }}
|
|
|
|
|
|
<!-- google analytics -->
|
|
{{/* {{ if and site.Config.Services.GoogleAnalytics.ID (ne site.Config.Services.GoogleAnalytics.ID "G-MEASUREMENT_ID") }}
|
|
{{ template "_internal/google_analytics.html" . }}
|
|
{{ end }} */}}
|
|
|
|
|
|
<!-- google tag manager -->
|
|
{{/* {{ partialCached "gtm.html" . }} */}}
|
|
|
|
|
|
<!-- search index -->
|
|
{{ partial "search-index.html" . }}
|
|
|
|
|
|
<!-- matomo analytics -->
|
|
{{/* {{ partialCached "matomo-analytics.html" . }} */}}
|
|
|
|
<!-- Baidu analytics -->
|
|
{{/* {{ partialCached "baidu-analytics.html" . }} */}}
|
|
|
|
<!-- Plausible Analytics -->
|
|
{{/* {{ partialCached "plausible-analytics.html" . }} */}}
|
|
|
|
<!-- Counter Analytics -->
|
|
{{/* {{ partialCached "counter-analytics.html" . }} */}}
|
|
|
|
<!-- Crisp Chat -->
|
|
{{/* {{ partialCached "crisp-chat.html" . }} */}}
|
|
|
|
<!-- Mermaid -->
|
|
{{ partial "mermaid/assets/js" . }}
|