51 lines
2.2 KiB
HTML
51 lines
2.2 KiB
HTML
|
{{define "header"}}
|
||
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<link rel="stylesheet" href="/lib/bootstrap/css/bootstrap.min.css">
|
||
|
<link rel="stylesheet" href="/lib/tether/css/tether.min.css">
|
||
|
<link rel="stylesheet" href="/lib/tether/css/tether-theme-basic.min.css">
|
||
|
<link rel="stylesheet" href="/lib/lightbox/ekko-lightbox.min.css">
|
||
|
<link rel="stylesheet" href="/main.css">
|
||
|
{{if .Meta.Title}}
|
||
|
<title>Goldsmith Sample - {{.Meta.Title}}</title>
|
||
|
{{else if eq .Meta.Layout "tag"}}
|
||
|
<title>Goldsmith Sample - Tagged "{{.Meta.Tags.Index}}"</title>
|
||
|
{{else if eq .Meta.Layout "index"}}
|
||
|
<title>Goldsmith Sample - Index of /{{.Dir}}</title>
|
||
|
{{end}}
|
||
|
</head>
|
||
|
<body>
|
||
|
{{end}}
|
||
|
|
||
|
{{define "navbar"}}
|
||
|
<nav class="navbar navbar-toggleable-md navbar-inverse bg-inverse fixed-top">
|
||
|
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup">
|
||
|
<span class="navbar-toggler-icon"></span>
|
||
|
</button>
|
||
|
<a class="navbar-brand" href="/">Goldsmith Sample</a>
|
||
|
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
|
||
|
<div class="navbar-nav">
|
||
|
{{$area := .Meta.Area}}
|
||
|
<a class="nav-item nav-link {{if $area}}{{if eq $area "home"}}active{{end}}{{end}}" href="/">Home</a>
|
||
|
<a class="nav-item nav-link {{if $area}}{{if eq $area "portfolio"}}active{{end}}{{end}}" href="/portfolio/">Portfolio</a>
|
||
|
<a class="nav-item nav-link {{if $area}}{{if eq $area "projects"}}active{{end}}{{end}}" href="/projects/">Projects</a>
|
||
|
<a class="nav-item nav-link {{if $area}}{{if eq $area "tags"}}active{{end}}{{end}}" href="/tags/">Tags</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
</nav>
|
||
|
{{end}}
|
||
|
|
||
|
{{define "footer"}}
|
||
|
<script src="/lib/jquery.min.js"></script>
|
||
|
<script src="/lib/tether/js/tether.min.js"></script>
|
||
|
<script src="/lib/bootstrap/js/bootstrap.min.js"></script>
|
||
|
<script src="/lib/lightbox/ekko-lightbox.min.js"></script>
|
||
|
<script src="/main.js"></script>
|
||
|
|
||
|
</body>
|
||
|
</html>
|
||
|
{{end}}
|