Inserito il tema direttamente nel codice invece che come sottomodulo

This commit is contained in:
2026-02-13 01:06:04 +01:00
parent 25f7d8cb2e
commit 3033ef8a21
202 changed files with 48267 additions and 3 deletions

View File

@ -0,0 +1,43 @@
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
<head>
{{ partial "headers.html" . }}
{{ partial "custom_headers.html" . }}
</head>
<body>
<div id="all">
{{ partial "top.html" . }}
{{ partial "nav.html" . }}
<div id="content">
<div class="container">
<div class="col-sm-6 col-sm-offset-3" id="error-page">
<div class="box">
<h3>{{ i18n "404Message" | markdownify }}</h3>
<h4 class="text-muted">{{ i18n "404Error" | markdownify }}</h4>
<p class="buttons"><a href="{{ "/" | relURL }}" class="btn btn-template-main"><i class="fas fa-home"></i> {{ i18n "404NavHome" | markdownify }}</a>
</p>
</div>
</div>
<!-- /.col-sm-6 -->
</div>
<!-- /.container -->
</div>
<!-- /#content -->
{{ partial "footer.html" . }}
</div>
</body>
</html>