Initial commit

This commit is contained in:
Kirchik
2025-08-02 11:45:16 +02:00
parent a6a820aba2
commit a0ba937a46
1078 changed files with 7800 additions and 1115 deletions
@@ -0,0 +1,32 @@
{{ partial "htmlhead" . }}
<body lang='{{ .Site.Language.Lang | default "en-us" }}' class="is-preload">
<!-- Wrapper -->
<div id="wrapper" class="fade-in">
{{- partial "header" . -}}
{{- partial "nav" . }}
<!-- Main -->
<div id="main">
<section>
<header class="major">
<h2>{{ .Title }}</h2>
</header>
{{ .Content }}
</section>
</div>
{{- partial "footer/index" . }}
{{- partial "copyright" . }}
<a href="#navPanel" id="navPanelToggle">{{ i18n "NAV_MENU" . }}</a>
</div>
<!-- Global Back to Top Button -->
{{ partial "back-to-top" . }}
{{- template "_internal/google_analytics.html" . }}
{{- partial "scripts/index" . }}
</body>
</html>
@@ -13,8 +13,8 @@
<!-- Post -->
<section class="post">
<header class="major">
{{ if not .Date.IsZero }}
<span class="date">{{ .Date.Format (.Site.Params.DateFormat | default "January 2, 2006") }}</span>
{{ if and (not .Date.IsZero) (not .Params.pinned) }}
<span class="date">{{ partial "format-date-ru.html" .Date }}</span>
{{ end }}
<h1>{{ .Title }}</h1>
<p>{{ .Description }}</p>
@@ -37,6 +37,10 @@
{{ partial "copyright" . }}
</div>
<!-- Global Back to Top Button -->
{{ partial "back-to-top" . }}
{{ template "_internal/google_analytics.html" . }}
{{ partial "scripts/index" . }}
</body>