14 lines
388 B
HTML
14 lines
388 B
HTML
|
<div class="background-container">
|
||
|
<img src="/neuron-purple.webp" alt="Background" class="background-image">
|
||
|
</div>
|
||
|
<article class="prose max-w-full dark:prose-invert glass">
|
||
|
{{ with .Title }}
|
||
|
<header>
|
||
|
<h1>{{ . | emojify }}</h1>
|
||
|
</header>
|
||
|
{{ end }}
|
||
|
<section>{{ .Content | emojify }}</section>
|
||
|
</article>
|
||
|
<section>
|
||
|
{{ partial "recent-articles.html" . }}
|
||
|
</section>
|