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;
|
||||
}
|
||||
|
||||
h3, p.h3 {
|
||||
font-size: larger;
|
||||
}
|
||||
|
||||
h1, h2, h3 {
|
||||
font-family: var(--light-font);
|
||||
}
|
||||
|
|
|
@ -41,5 +41,5 @@ code, .code {
|
|||
font-family: monospace;
|
||||
padding: 0.5em;
|
||||
margin-bottom: 0.5em;
|
||||
background: white;
|
||||
background: #EEEEEE;
|
||||
}
|
||||
|
|
|
@ -13,12 +13,16 @@
|
|||
<div class="text-center col3">
|
||||
<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 class="col3 text-right padding-container-1">
|
||||
<br>
|
||||
{{ i18n "usingTheme" }} <a href="https://git.ad5001.eu/Ad5001/omegamma">Omegamma</a><br>
|
||||
{{ i18n "poweredBy" }} <a href="https://gohugo.io">Hugo</a>
|
||||
<p>{{ i18n "usingTheme" }} <a href="https://git.ad5001.eu/Ad5001/omegamma">Omegamma</a></p>
|
||||
<p>{{ i18n "poweredBy" }} <a href="https://gohugo.io">Hugo</a></p>
|
||||
</div>
|
||||
</div>
|
||||
<br>
|
||||
|
|
|
@ -22,5 +22,5 @@
|
|||
{{ end }}
|
||||
{{ end }}
|
||||
{{ $mainjs := resources.Get "/js/main.js" | minify }}
|
||||
<script src="{{ $mainjs.Permalink }}"></script>
|
||||
<script defer src="{{ $mainjs.Permalink }}"></script>
|
||||
</head>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<div class="columns-container fill-width">
|
||||
{{ range $langs }}
|
||||
<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 ) }}
|
||||
<br>
|
||||
<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 }}
|
||||
</section>
|
||||
|
|
Loading…
Reference in a new issue