hugo-json/layouts/_default/home.html

60 lines
1.4 KiB
HTML
Raw Normal View History

2024-06-15 22:41:34 -04:00
{{ define "main" }}
<p>{</p>
<main>
<div class="one">
<div class="flex-row">
<span>title:</span>
<span class="highlight">'{{ .Site.Params.title }}'</span>
,
2024-06-16 01:07:10 -04:00
</div>
<div class="flex-row">
<span>body:</span>
<span> <span class="highlight">'{{ .Site.Params.body }}'</span>, </span>
2024-06-16 04:07:07 -04:00
</div>
<span class="flex-col"
>"Q & A": [ {{ range .Site.Params.faq }}
<div class="two">
{<br />
<div class="three">
<span>Q:</span>
<span class="highlight">'{{ .question }}'</span>,<br />
<span>A:</span>
<span class="highlight">'{{ .answer }}'</span>
</div>
<br />}
</div>
{{ end }} ],</span
>
<span class="flex-col"
>contact: {
<div class="two">
{{ range .Site.Params.contact }}
<div class="three">
<span>"{{ .service }}":</span>
<span class="highlight">'{{ .input }}'</span><br />
</div>
{{ end }}
</div>
},
</span>
</div>
</main>
<footer class="one">
<span>
license:
<a class="highlight" href="https://creativecommons.org/licenses/by-sa/4.0"
>'CC BY-SA 4.0'</a
>,
</span>
<span>
"source code": '<a
class="highlight"
href="https://git.myco.systems/mycosystems/hugo-maintenance"
>'https://git.myco.systems/mycosystems/hugo-maintenance'</a
>
2024-06-16 04:18:52 -04:00
</span>
</footer>
<p>}</p>
2024-06-15 22:41:34 -04:00
{{ end }}