Skip to content

Commit

Permalink
added new general layouts
Browse files Browse the repository at this point in the history
  • Loading branch information
lucadelu committed Dec 31, 2019
1 parent f38077e commit 744352e
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions themes/grass/layouts/about/general.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{{ partial "head.html" . }}


{{ "<!-- navigation -->" | safeHTML }}
<header class="shadow-bottom position-relative">
<div class="container">
{{ partial "navigation.html" . }}
</div>
</header>
{{ "<!-- /navigation -->" | safeHTML }}


<!-- page title -->
<section class="section bg-lgr">
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto text-center">
<h1 class="grass-green cap">{{.Title}}</h1>
</div>
</div>
</div>
</section>
<section class="bg-white pb-0">
{{ partial "breadcrumb.html" . }}
</section>

<!-- details page -->
<section class="single section bg-gray pb-0">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="p-5 bg-white">
{{ .Content }}
</div>
</div>
</div>
</div>
</section>


{{ partial "footer.html" . }}

0 comments on commit 744352e

Please sign in to comment.