Fix: remove submodule

This commit is contained in:
psychhim
2025-11-11 18:07:05 +05:30
parent ea7284b910
commit 27a08b46f6
111 changed files with 4844 additions and 4 deletions

View File

@@ -0,0 +1,3 @@
{{- with or .Description .Summary site.Params.description | plainify | htmlUnescape | chomp }}
<meta name="description" content="{{ . }}">
{{- end }}

View File

@@ -0,0 +1 @@
<link rel="icon" href="/favicon.ico" />

View File

@@ -0,0 +1 @@
{{- /* You can put scripts and styles in this file, e.g. Google Analytics */ -}}

View File

@@ -0,0 +1 @@
{{- /* You can preload scripts in this file */ -}}

View File

@@ -0,0 +1,3 @@
{{ with .OutputFormats.Get "rss" -}}
{{ printf `<link rel=%q type=%q href=%q title=%q>` .Rel .MediaType.Type .RelPermalink site.Title | safeHTML }}
{{ end }}

View File

@@ -0,0 +1,10 @@
{{ $opts := dict "transpiler" "libsass" "targetPath" "css/style.css" }}
{{- with resources.Get "scss/main.scss" | toCSS $opts }}
{{- if eq hugo.Environment "development" }}
<link rel="stylesheet" href="{{ .RelPermalink }}">
{{- else }}
{{- with . | minify | fingerprint }}
<link rel="stylesheet" href="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous">
{{- end }}
{{- end }}
{{- end }}