43 lines
1.2 KiB
HTML
43 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="{{ .Site.Language.Lang | default "en" }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<!-- SEO & Social Meta Tags -->
|
|
<title>{{ if .IsHome }}{{ .Site.Title }}{{ else }}{{ .Title }} - {{ .Site.Title }}{{ end }}</title>
|
|
{{ partial "seo/seo-config.html" . }}
|
|
|
|
<!-- CSS - Tailwind CSS -->
|
|
<link href="/builds/app.css" rel="stylesheet">
|
|
|
|
<!-- Icons -->
|
|
<!-- <link href="/assets/plugins/font-awesome/css/all.css" rel="stylesheet"> -->
|
|
</head>
|
|
<body data-preloader="1">
|
|
|
|
<!-- Header -->
|
|
{{ partial "header.html" . }}
|
|
|
|
<!-- Breadcrumb -->
|
|
{{ partial "breadcrumb.html" . }}
|
|
|
|
<main>
|
|
{{ block "main" . }}{{ end }}
|
|
</main>
|
|
|
|
<!-- Footer -->
|
|
{{ partial "footer.html" . }}
|
|
|
|
<!-- Scroll to top button -->
|
|
<div class="scrolltotop icon-lg">
|
|
<a class="button-circle button-circle-md button-circle-dark" href="#"><i class="bi bi-arrow-up-short"></i></a>
|
|
</div>
|
|
<!-- end Scroll to top button -->
|
|
|
|
<!-- ***** JAVASCRIPTS ***** -->
|
|
<script type="module" src="/builds/app.js"></script>
|
|
<!-- <script src="/assets/js/header.js"></script> -->
|
|
</body>
|
|
</html>
|