1
0

Move theme from subrepo into the main repo

the theme is customized for this site so having it
as a sub repo dosent make sense
This commit is contained in:
2025-12-24 11:05:37 -05:00
parent dd9c76b24b
commit 9a313c53a8
56 changed files with 2652 additions and 4 deletions

View File

@@ -0,0 +1,20 @@
{{ partial "head.html" . }}
<body>
<div id="container">
{{ partial "header.html" . }}
<section id="main" class="outer">
<section class="archives-wrap">
<div class="archive-category-wrap">
<span class="archive-category">{{ .Title }}</span>
</div>
<div class="archives">
{{- range .Paginator.Pages }}
{{ partial "li.html" . }}
{{- end -}}
</div></section>
{{ partial "pagination.html" . }}
</section>
{{ partial "footer.html" . }}
</div>
</body>
</html>

View File

@@ -0,0 +1,15 @@
{{ partial "head.html" . }}
<body>
<div id="container">
{{ partial "header.html" . }}
<section id="main" class="outer">
{{ partial "article.html" . }}
{{ if and (not .Params.nocomment) .Site.DisqusShortname }}
{{ template "_internal/disqus.html" . }}
{{ end }}
</section>
{{ partial "footer.html" . }}
</div>
</body>
</html>

View File

@@ -0,0 +1,27 @@
{{ partial "head.html" . }}
<body>
<div id="container">
{{ partial "header.html" . }}
<section id="main" class="outer">
<section class="layout-wrap">
<div class="layout-title">
<span>{{ .Title }}</span>
</div>
<div class="layout-wrap-inner tag-cloud">
{{ $site := .Site }}
{{ $data := .Data }}
<ul>
{{ range $key, $value := .Data.Terms.Alphabetical }}
<li>
<a href="{{ $site.LanguagePrefix }}/{{ $data.Plural }}/{{ $value.Name | urlize }}">{{ $value.Name }}</a>({{ $value.Count }})
</li>
{{ end }}
</ul>
</div>
</section>
</section>
{{ partial "footer.html" . }}
</div>
</body>
</html>