mirror of
https://github.com/davegallant/davegallant.github.io.git
synced 2025-08-09 18:12:27 +00:00
port to gitlab.
This commit is contained in:
47
themes/custom/layouts/_default/baseof.html
Normal file
47
themes/custom/layouts/_default/baseof.html
Normal file
@@ -0,0 +1,47 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="{{ .Site.Language }}">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
<title>
|
||||
{{- block "title" . -}}
|
||||
{{ if .IsPage }}{{ .Title }} - {{ .Site.Title }}{{ else }}{{ .Site.Title }}{{ end }}
|
||||
{{- end -}}
|
||||
</title>
|
||||
{{ partial "head.html" . }}
|
||||
</head>
|
||||
<body>
|
||||
{{ partial "slideout.html" . }}
|
||||
<header id="header" class="header">
|
||||
<div class="header-div">
|
||||
{{ partial "header.html" . }}
|
||||
</div>
|
||||
</header>
|
||||
{{/*
|
||||
{{ partial "search.html" . }}
|
||||
*/}}
|
||||
<div class="container" >
|
||||
<main id="main" class="main">
|
||||
<!-- sidebar -->
|
||||
{{ if or .IsHome .Params.sidebar }}
|
||||
{{ partial "sidebar.html" . }}
|
||||
{{ end }}
|
||||
<div class="content-wrapper" id="mobile-panel">
|
||||
<div id="content" class="content">
|
||||
{{ block "content" . }}{{ end }}
|
||||
</div>
|
||||
{{ partial "comments.html" . }}
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<footer id="footer" class="footer">
|
||||
{{ partial "footer.html" . }}
|
||||
</footer>
|
||||
|
||||
<div class="back-to-top" id="back-to-top">
|
||||
<i class="iconfont icon-up"></i>
|
||||
</div>
|
||||
</div>
|
||||
{{ partial "scripts.html" . }}
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user