w2ng/themes/hugo-w2ng/layouts/_default/single.html
2020-01-05 00:26:17 +08:00

29 lines
899 B
HTML

{{ define "main" }}
<section class="w-full md:w-1/5">
<div class="bg-white my-2">
<ul class="list-reset">
<li>
<a href="#" class="block p-4 text-grey-darker font-bold">Home</a>
</li>
<li>
<a href="#" class="block p-4 text-grey-darker font-bold">About
us</a>
</li>
<li>
<a href="#" class="block p-4 text-grey-darker font-bold">Services</a>
</li>
<li>
<a href="#" class="block p-4 text-grey-darker font-bold">Contact
us</a>
</li>
</ul>
</div>
</section>
<!-- <article class=" p-4"> -->
<section class="flex-1 p-4 border-l-2 border-black">
<article class="max-w-3xl mx-auto ">
<h1 class="">{{ .Title }}</h1>
{{ .Content }}
</article>
</section>
{{ end }}