mirror of
https://github.com/yuzu-emu/shared-bulma-theme.git
synced 2024-11-22 19:25:38 +01:00
64 lines
2.9 KiB
HTML
Executable File
64 lines
2.9 KiB
HTML
Executable File
<!DOCTYPE html>
|
|
<html lang="{{ .Site.Params.languageCode | default " en-us " }}"
|
|
{{- if not .IsHome }}class="has-navbar-fixed-top"{{- end }}>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
|
|
<meta name="theme-color" content="#404040">
|
|
<meta property="og:title" content="{{ if ne .URL " / " }}{{ .Title }} · {{ end }}{{ .Site.Title }}" />
|
|
<meta property="og:site_name" content="{{ .Site.Title }}" />
|
|
<meta property="og:url" content="{{ .Permalink }}" /> {{- if eq .IsPage true }} {{ .Render "meta" }} {{- end }} {{ .Hugo.Generator }}
|
|
|
|
<link rel="icon" href="{{ .Site.BaseURL }}/favicon.ico" />
|
|
<link rel="shortcut icon" href="{{ .Site.BaseURL }}/favicon.ico" type="image/x-icon" />
|
|
<link rel="canonical" href="{{ .Permalink }}"> {{ if .RSSLink }}
|
|
<link href="{{ .Site.BaseURL }}/index.xml" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />
|
|
<link href="{{ .Site.BaseURL }}/index.xml" rel="feed" type="application/rss+xml" title="{{ .Site.Title }}" /> {{ end }}
|
|
|
|
<title>{{- if not .IsHome }}{{ .Title }} - {{ .Site.Title }}{{- else }}{{ .Site.Title }} - {{ .Site.Params.Tagline }}{{- end}}</title>
|
|
<link href="https://fonts.googleapis.com/css?family=Ubuntu|Dosis" rel="stylesheet">
|
|
<link href="https://use.fontawesome.com/releases/v5.0.2/css/all.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}/css/style.css" /> {{ if eq (getenv "HUGO_ENV") "PRD" }}
|
|
<meta name="robots" content="noindex,nofollow" /> {{ else }}
|
|
<meta name="robots" content="noindex,nofollow" /> {{ end }}
|
|
</head>
|
|
|
|
<body>
|
|
{{- if not .IsHome }}
|
|
{{ partial "layout/navbar" . }}
|
|
{{- end }}
|
|
|
|
{{ block "main" . }}{{ end }}
|
|
|
|
<div class="container">
|
|
<footer class="footer">
|
|
{{ partial "layout/footer_contents.html" . }}
|
|
</footer>
|
|
</div>
|
|
|
|
<script src="{{ .Site.BaseURL }}/js/script.js"></script>
|
|
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-112443698-1"></script>
|
|
|
|
<script type="text/javascript">
|
|
(adsbygoogle = window.adsbygoogle || []).push({});
|
|
</script>
|
|
|
|
<!-- Google Analytics -->
|
|
<script>
|
|
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
|
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
|
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
|
|
|
ga('create', '{{ .Site.Params.GoogleAnalyticsTrackingId }}', 'auto');
|
|
ga('send', 'pageview');
|
|
</script>
|
|
<!-- End Google Analytics -->
|
|
|
|
{{- block "scripts" . }}{{- end }}
|
|
</body>
|
|
|
|
</html> |