22 lines
986 B
HTML
22 lines
986 B
HTML
{{ define "main" }}
|
|
<div class="max-w-7xl mx-auto bg-white p-10 pt-16 rounded-lg shadow-xl">
|
|
<div class="mb-10 text-center ">
|
|
<h1 class="text-xl md:text-3xl font-bold mb-6 text-black">{{ .Title }}</h1>
|
|
<div class="date text-lg md:text-2xl">
|
|
{{ .Date | time.Format ":date_long" }}
|
|
</div>
|
|
</div>
|
|
<div class="bg-gray-400 h-[1px] mb-8"></div>
|
|
<div class="content prose prose-lg lg:prose-xl max-w-none prose-a:text-blue-800 prose-a:no-underline hover:prose-a:text-blue-600 hover:prose-a:underline">
|
|
{{ .Content }}
|
|
</div>
|
|
</div>
|
|
|
|
<button class="m-8 p-3 rounded-full bg-gray-200 hover:ring-2 hover:ring-blue-500 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500" onclick="window.history.back()">
|
|
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2">
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="M15 19l-7-7 7-7" />
|
|
</svg>
|
|
</button>
|
|
|
|
{{ end }}
|