73 lines
3.1 KiB
HTML
73 lines
3.1 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, shrink-to-fit=no">
|
|
|
|
<!-- SEO & Social Meta Tags -->
|
|
<title>{{ if .IsHome }}{{ .Site.Title }}{{ else }}{{ .Title }} - {{ .Site.Title }}{{ end }}</title>
|
|
{{ partial "seo/seo-config.html" . }}
|
|
|
|
<!-- CSS -->
|
|
<link href="/assets/plugins/bootstrap/bootstrap.min.css" rel="stylesheet">
|
|
<link href="/assets/plugins/owl-carousel/owl.carousel.min.css" rel="stylesheet">
|
|
<link href="/assets/plugins/owl-carousel/owl.theme.default.min.css" rel="stylesheet">
|
|
<link href="/assets/plugins/magnific-popup/magnific-popup.min.css" rel="stylesheet">
|
|
<link href="/assets/plugins/scrollcue/scrollcue.css" rel="stylesheet">
|
|
<link href="/assets/plugins/swiper/swiper-bundle.min.css" rel="stylesheet">
|
|
<link href="/assets/css/theme.css" rel="stylesheet">
|
|
<link href="/assets/css/theme-colors/theme-color-blue.css" rel="stylesheet">
|
|
<!-- Fonts/Icons -->
|
|
<link href="/assets/plugins/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
|
|
<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>
|
|
<div class="section bg-dark">
|
|
<div class="container">
|
|
<div class="row g-4 align-items-center">
|
|
<div class="col-12 col-md-6 text-center text-md-start">
|
|
<ul class="list-inline-dash">
|
|
<li><a href="/faq/">FAQ</a></li>
|
|
<li><a href="/careers/">Careers</a></li>
|
|
<li><a href="/clients/">Clients</a></li>
|
|
</ul>
|
|
<p class="mt-2">© {{ now.Format "2006" }} {{ .Site.Title }}, All Rights Reserved.</p>
|
|
</div>
|
|
<div class="col-12 col-md-6 text-center text-md-end">
|
|
<ul class="list-inline">
|
|
<li><a href="#"><i class="bi bi-facebook"></i></a></li>
|
|
<li><a href="#"><i class="bi bi-twitter-x"></i></a></li>
|
|
<li><a href="#"><i class="bi bi-pinterest"></i></a></li>
|
|
<li><a href="#"><i class="bi bi-instagram"></i></a></li>
|
|
</ul>
|
|
</div>
|
|
</div><!-- end row -->
|
|
</div><!-- end container -->
|
|
</div>
|
|
</footer>
|
|
|
|
<!-- 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 src="/assets/plugins/jquery.min.js"></script>
|
|
<script src="/assets/plugins/plugins.js"></script>
|
|
<script src="/assets/js/functions.js"></script>
|
|
{{ partial "scripts.html" . }}
|
|
</body>
|
|
</html> |