add one page template skeleton
This commit is contained in:
parent
cb4df1c203
commit
19e8a09e35
|
@ -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 }}
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
<section class="container max-w-full w-full h-screen bg-gray-300">
|
||||
</section>
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
<section class="container max-w-full w-full h-screen bg-gray-700">
|
||||
</section>
|
||||
|
|
@ -0,0 +1 @@
|
|||
<div>The Footer</div>
|
|
@ -0,0 +1 @@
|
|||
<div>The Header</div>
|
|
@ -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>
|
|
@ -0,0 +1,3 @@
|
|||
<section class="container max-w-full w-full h-screen bg-gray-500">
|
||||
</section>
|
||||
|
Reference in New Issue