websites/layouts/index.html

12 lines
420 B
HTML
Raw Permalink Normal View History

2023-06-15 12:17:18 +02:00
{{ define "main" }}
{{ partial "heroe" . }}
<div class="relative w-full bg-white mb-32 px-6 py-12 shadow-xl shadow-slate-700/10 ring-1 ring-gray-900/5 md:mx-auto md:max-w-3xl lg:max-w-4xl lg:py-16">
<div class="mx-auto max-w-prose lg:text-lg">
<article class="prose prose-slate mx-auto lg:prose-xl">
{{ .Content }}
</article>
</div>
</div>
{{ partial "newsletter.html" . }}
{{ end }}