Skip to content

Instantly share code, notes, and snippets.

@jakegalson
Created June 24, 2017 18:34
Show Gist options
  • Save jakegalson/7cdd9fdeef08b0e023808aa8047e2fc8 to your computer and use it in GitHub Desktop.
Save jakegalson/7cdd9fdeef08b0e023808aa8047e2fc8 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
{{ partial "head.html" . }}
<body>
<div id="all">
<header>
{{ partial "nav.html" . }}
</header>
{{ partial "breadcrumbs.html" . }}
<div id="content">
{{ if isset .Params "id" }}
{{ partial .Params.id . }}
{{ else }}
<div class="container">
<div class="row">
<div class="col-md-12">
<div>
{{ .Content }}
</div>
</div>
</div>
<!-- /.row -->
</div>
<!-- /.container -->
{{ end }}
</div>
<!-- /#content -->
{{ partial "carousel.html" . }}
{{ partial "footer.html" . }}
</div>
<!-- /#all -->
{{ partial "scripts.html" . }}
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment