Initial commit for Hugo site.

This commit is contained in:
Charish Patel
2025-02-20 08:28:31 -05:00
parent 737c448252
commit 045d0c24f3
696 changed files with 91218 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
{{ define "main" -}}
{{ if .Site.Params.light_dark }}
{{ partial "light_dark.html" . }}
{{ end }}
<div class="post">
{{ with .Site.GetPage "/about" }}
{{ if .Pages }}
{{ range .Pages }}
<h1 class="post-title">{{ .Title }}</h1>
{{ .Content }}
{{ end }}
{{ else }}
<h1 class="post-title">{{ .Title }}</h1>
{{ .Content }}
{{ end }}
{{ end }}
{{ if (.Site.Params.listmonk) }}
{{ partial "post/listmonk_email_newsletters.html" . }}
{{ end }}
</div>
{{ end }}