Compare commits

..

No commits in common. "d1f5684800527cd4c55849807e0122cac0e3159d" and "3ff9e759ba11d49eb0cd7022f0e0d9137a0d98a3" have entirely different histories.

5 changed files with 55 additions and 75 deletions

View file

@ -7,7 +7,10 @@
{{ partial "head.html" . }}
</head>
<body>
{{ block "main" . }}{{ end }}
{{ partial "ascii.html" . }}
{
<main>{{ block "main" . }}{{ end }}</main>
<footer>{{ partial "footer.html" . }}</footer>
}
{{ partial "ascii.html"}}
</body>
</html>

View file

@ -1,59 +1,39 @@
{{ define "main" }}
<p>{</p>
<main>
<div class="one">
<div class="flex-row">
<span>title:</span>
<span class="highlight">'{{ .Site.Params.title }}'</span>
<span class="highlight">'{{ .Params.title }}'</span>
,
</div>
<div class="flex-row">
<span>body:</span>
<span> <span class="highlight">'{{ .Site.Params.body }}'</span>, </span>
<span> <span class="highlight">'{{ .Params.body }}'</span>, </span>
</div>
<span class="flex-col"
>"Q & A": [ {{ range .Site.Params.faq }}
>"Q & A": [ {{ range .Params.faq }}
<div class="two">
{<br />
<div class="three">
<span>Q:</span>
<span>question:</span>
<span class="highlight">'{{ .question }}'</span>,<br />
<span>A:</span>
<span>answer:</span>
<span class="highlight">'{{ .answer }}'</span>
</div>
<br />}
<br />},
</div>
{{ end }} ],</span
>
<span class="flex-col"
>contact: {
<div class="two">
{{ range .Site.Params.contact }}
{{ range .Params.contact }}
<div class="three">
<span>"{{ .service }}":</span>
<span class="highlight">'{{ .input }}'</span><br />
<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
>
</span>
</footer>
<p>}</p>
{{ end }}

View file

@ -1,4 +1,3 @@
{{ if eq .Site.Params.asciiArt 1 }}
<pre>
__..--''``---....___ _..._ __
/// //_.-' .-/"; ` ``<._ ``.''_ `. / // /
@ -7,13 +6,3 @@
/ // // // `-._,_)' // / ``--...____..-' /// / //
Ascii Art by: Felix Lee
</pre>
{{ end }}
{{ if eq .Site.Params.asciiArt 2 }}
<pre>
|\ _,,,---,,_
ZZZzz /,`.-'`' -. ;-;;,_
|,4- ) )-,_. ,\ ( `'-'
'---''(_/--' `-'\_)
Ascii Art by: Felix Lee
</pre>
{{ end }}

View file

@ -0,0 +1,12 @@
<div 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
>
</span>
</div>

View file

@ -1,8 +1,4 @@
<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" />
<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>
{{ partialCached "head/css.html" . }}