add one page template skeleton

This commit is contained in:
Ray Elliott 2020-03-28 15:22:25 +00:00
parent cb4df1c203
commit 19e8a09e35
8 changed files with 18 additions and 4 deletions

View File

@ -1,8 +1,8 @@
{{ define "main" }}
<section id="js-block-parent" class="container max-w-full w-full h-screen bg-gray-100 flex flex-wrap items-center justify-center content-around justify-around">
{{ partial "block.html" . }}
</section>
{{ partial "hero.html" }}
{{ partial "about.html" }}
{{ partial "services.html" }}
{{ partial "contact.html" }}
{{ end }}

View File

@ -0,0 +1,3 @@
<section class="container max-w-full w-full h-screen bg-gray-300">
</section>

View File

@ -0,0 +1,3 @@
<section class="container max-w-full w-full h-screen bg-gray-700">
</section>

View File

@ -0,0 +1 @@
<div>The Footer</div>

View File

@ -0,0 +1 @@
<div>The Header</div>

View File

@ -0,0 +1,3 @@
<section id="js-block-parent" class="container max-w-full w-full h-screen bg-gray-100 flex flex-wrap items-center justify-center content-around justify-around">
{{ partial "blocks.html" . }}
</section>

View File

@ -0,0 +1,3 @@
<section class="container max-w-full w-full h-screen bg-gray-500">
</section>