Merging commits.
This commit is contained in:
commit
f7fe8460da
6 changed files with 16 additions and 8 deletions
|
@ -27,6 +27,10 @@ h2 {
|
||||||
font-size: x-large;
|
font-size: x-large;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
h3, p.h3 {
|
||||||
|
font-size: larger;
|
||||||
|
}
|
||||||
|
|
||||||
h1, h2, h3 {
|
h1, h2, h3 {
|
||||||
font-family: var(--light-font);
|
font-family: var(--light-font);
|
||||||
}
|
}
|
||||||
|
|
|
@ -41,5 +41,5 @@ code, .code {
|
||||||
font-family: monospace;
|
font-family: monospace;
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
margin-bottom: 0.5em;
|
margin-bottom: 0.5em;
|
||||||
background: white;
|
background: #EEEEEE;
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,12 +13,16 @@
|
||||||
<div class="text-center col3">
|
<div class="text-center col3">
|
||||||
<br>
|
<br>
|
||||||
{{ .Site.Copyright }}<br>
|
{{ .Site.Copyright }}<br>
|
||||||
<a href="{{ .Site.Params.websiteSource }}">{{ i18n "websiteSource" }}</a><br>
|
<p><a href="{{ .Site.Params.websiteSource }}">{{ i18n "websiteSource" }}</a></p>
|
||||||
|
{{ if .GitInfo }}
|
||||||
|
<p>Built from <a href="{{ .Site.Params.websiteSource }}/commit/{{ .GitInfo.Hash }}">{{ .GitInfo.AbbreviatedHash }}</a></p>
|
||||||
|
{{ end }}
|
||||||
|
<a href="https://ad5001.eu/terms-of-use">Terms of use</a><br>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div class="col3 text-right padding-container-1">
|
<div class="col3 text-right padding-container-1">
|
||||||
<br>
|
<p>{{ i18n "usingTheme" }} <a href="https://git.ad5001.eu/Ad5001/omegamma">Omegamma</a></p>
|
||||||
{{ i18n "usingTheme" }} <a href="https://git.ad5001.eu/Ad5001/omegamma">Omegamma</a><br>
|
<p>{{ i18n "poweredBy" }} <a href="https://gohugo.io">Hugo</a></p>
|
||||||
{{ i18n "poweredBy" }} <a href="https://gohugo.io">Hugo</a>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<br>
|
<br>
|
||||||
|
|
|
@ -22,5 +22,5 @@
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ $mainjs := resources.Get "/js/main.js" | minify }}
|
{{ $mainjs := resources.Get "/js/main.js" | minify }}
|
||||||
<script src="{{ $mainjs.Permalink }}"></script>
|
<script defer src="{{ $mainjs.Permalink }}"></script>
|
||||||
</head>
|
</head>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<div class="columns-container fill-width">
|
<div class="columns-container fill-width">
|
||||||
{{ range $langs }}
|
{{ range $langs }}
|
||||||
<div class="col{{ len $langs }} column text-center">
|
<div class="col{{ len $langs }} column text-center">
|
||||||
<h3>{{ i18n . }}</h3>
|
<p class="h3">{{ i18n . }}</p>
|
||||||
{{ partial "badge.html" (dict "Icon" $icon "Lang" . "Alt" $alt ) }}
|
{{ partial "badge.html" (dict "Icon" $icon "Lang" . "Alt" $alt ) }}
|
||||||
<br>
|
<br>
|
||||||
<div class="center fit-content">
|
<div class="center fit-content">
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
<section class="section-skewed padding-container-3" style="background: {{ .Get 1 | safeCSS }}; background: linear-gradient(170deg, {{ .Get 1 | safeCSS }} 0%, {{ .Get 0 | safeCSS }} 49%, {{ .Get 1 | safeCSS }} 100%);">
|
<section class="section-skewed padding-container-3" style="background: {{ .Get 0 | safeCSS }}; background: linear-gradient(170deg, {{ .Get 1 | safeCSS }} 0%, {{ .Get 0 | safeCSS }} 49%, {{ .Get 1 | safeCSS }} 100%);">
|
||||||
{{ .Inner | markdownify }}
|
{{ .Inner | markdownify }}
|
||||||
</section>
|
</section>
|
||||||
|
|
Loading…
Reference in a new issue