update to use confiig

This commit is contained in:
brooke 2024-06-16 15:10:40 -04:00
parent 3ff9e759ba
commit 7a7fac3cd6
3 changed files with 23 additions and 11 deletions

View file

@ -2,34 +2,34 @@
<div class="one">
<div class="flex-row">
<span>title:</span>
<span class="highlight">'{{ .Params.title }}'</span>
<span class="highlight">'{{ .Site.Params.title }}'</span>
,
</div>
<div class="flex-row">
<span>body:</span>
<span> <span class="highlight">'{{ .Params.body }}'</span>, </span>
<span> <span class="highlight">'{{ .Site.Params.body }}'</span>, </span>
</div>
<span class="flex-col"
>"Q & A": [ {{ range .Params.faq }}
>"Q & A": [ {{ range .Site.Params.faq }}
<div class="two">
{<br />
<div class="three">
<span>question:</span>
<span>Q:</span>
<span class="highlight">'{{ .question }}'</span>,<br />
<span>answer:</span>
<span>A:</span>
<span class="highlight">'{{ .answer }}'</span>
</div>
<br />},
<br />}
</div>
{{ end }} ],</span
>
<span class="flex-col"
>contact: {
<div class="two">
{{ range .Params.contact }}
{{ range .Site.Params.contact }}
<div class="three">
<span>"{{ .service }}":</span>
<span class="highlight">'{{ .input }}'</span>,<br />
<span class="highlight">'{{ .input }}'</span><br />
</div>
{{ end }}
</div>

View file

@ -6,3 +6,11 @@
/ // // // `-._,_)' // / ``--...____..-' /// / //
Ascii Art by: Felix Lee
</pre>
<pre>
|\ _,,,---,,_
ZZZzz /,`.-'`' -. ;-;;,_
|,4- ) )-,_. ,\ ( `'-'
'---''(_/--' `-'\_)
Ascii Art by: Felix Lee
</pre>

View file

@ -1,4 +1,8 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>{{ if .IsHome }}{{ site.Title }}{{ else }}{{ printf "%s | %s" .Title site.Title }}{{ end }}</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<meta property="og:title" content="{{ .Site.Params.opengraph.title }}">
<meta property="og:image" content="{{ .Site.Params.opengraph.image }}">
<meta property="og:description" content="{{ .Site.Params.opengraph.description | html }}">
<meta property="og:url" content="{{ .Permalink }}">
<link rel="canonical" href="{{ .Permalink }}" itemprop="url" />
{{ partialCached "head/css.html" . }}