* replace Bootstrap-based styling with Tailwind CSS * update theme compatibility for latest Hugo version * refactor templates and partials * fix outdated code and broken components * improve project structure and maintainability * optimize styling and frontend build setup
66 lines
2.2 KiB
HTML
Executable File
66 lines
2.2 KiB
HTML
Executable File
<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="roxo-hugo" />
|
|
|
|
<!-- favicon -->
|
|
{{/* https://github.com/gethugothemes/hugo-modules/tree/master/images */}}
|
|
{{ partialCached "favicon" . }}
|
|
|
|
|
|
<!-- manifest -->
|
|
{{/* https://github.com/gethugothemes/hugo-modules/tree/master/pwa */}}
|
|
{{ partialCached "manifest" . }}
|
|
|
|
|
|
<!-- site verifications -->
|
|
{{/* https://github.com/gethugothemes/hugo-modules/tree/master/seo-tools/site-verifications */}}
|
|
{{ partialCached "site-verifications.html" . }}
|
|
|
|
|
|
<!-- opengraph and twitter card -->
|
|
{{/* https://github.com/gethugothemes/hugo-modules/tree/master/seo-tools/basic-seo */}}
|
|
{{ partial "basic-seo.html" . }}
|
|
|
|
|
|
<!-- custom script -->
|
|
{{/* https://github.com/gethugothemes/hugo-modules/tree/master/components/custom-script */}}
|
|
{{ partialCached "custom-script.html" . }}
|
|
|
|
|
|
<!-- google analytics -->
|
|
{{/* https://gohugo.io/templates/embedded/#configuration-google-analytics */}}
|
|
{{ if and site.Config.Services.GoogleAnalytics.ID (ne site.Config.Services.GoogleAnalytics.ID "G-MEASUREMENT_ID") }}
|
|
{{ partial "google_analytics.html" . }}
|
|
{{ end }}
|
|
|
|
|
|
<!-- google tag manager -->
|
|
{{/* https://github.com/gethugothemes/hugo-modules/tree/master/seo-tools/google-tag-manager */}}
|
|
{{ partialCached "gtm.html" . }}
|
|
|
|
<!-- matomo analytics -->
|
|
{{/* https://github.com/gethugothemes/hugo-modules/tree/master/seo-tools/matomo-analytics */}}
|
|
{{/* {{ partialCached "matomo-analytics.html" . }} */}}
|
|
|
|
<!-- Baidu analytics -->
|
|
{{/* https://github.com/gethugothemes/hugo-modules/tree/master/seo-tools/baidu-analytics */}}
|
|
{{/* {{ partialCached "baidu-analytics.html" . }} */}}
|
|
|
|
<!-- Plausible Analytics -->
|
|
{{/* https://github.com/gethugothemes/hugo-modules/tree/master/seo-tools/plausible-analytics */}}
|
|
{{/* {{ partialCached "plausible-analytics.html" . }} */}}
|
|
|
|
<!-- Counter Analytics -->
|
|
{{/* https://github.com/gethugothemes/hugo-modules/tree/master/seo-tools/counter-analytics */}}
|
|
{{/* {{ partialCached "counter-analytics.html" . }} */}}
|
|
|
|
<!-- Crisp Chat -->
|
|
{{/* https://github.com/gethugothemes/hugo-modules/tree/master/components/crisp-chat */}}
|
|
{{/* {{ partialCached "crisp-chat.html" . }} */}}
|