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
@@ -0,0 +1,21 @@
<div class="sidebar-about">
<h1 class="brand">
{{ if .Site.Params.remote_brand_image }}
<a href="{{ .Site.BaseURL }}">
<img src="{{ .Site.Params.remote_brand_image }}" alt="brand image">
</a>
{{ else if .Site.Params.brand_image }}
<a href="{{ .Site.BaseURL }}">
<img src="{{ .Site.Params.brand_image }}" alt="brand image">
</a>
{{ end }}
{{ if .Site.Params.brand }}
<a href="{{ .Site.BaseURL }}">
<h1>{{ .Site.Params.brand }}</h1>
</a>
{{ end }}
</h1>
<p class="lead">
{{ with .Site.Params.description }}{{. | safeHTML}}{{end}}
</p>
</div>