Initial Commit UwU

This commit is contained in:
nikurasu 2023-02-20 15:44:59 +01:00
commit 9264b98bc3
Signed by: Nikurasu
GPG Key ID: 9E7F14C03EF1F271
10 changed files with 50 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
_gen
.hugo_build.lock

6
archetypes/default.md Normal file
View File

@ -0,0 +1,6 @@
---
title: "{{ replace .Name "-" " " | title }}"
date: {{ .Date }}
draft: true
---

3
assets/sass/main.scss Normal file
View File

@ -0,0 +1,3 @@
body {
background: cyan;
}

4
content/_index.md Normal file
View File

@ -0,0 +1,4 @@
---
title: Services by cat enby club
---
Hello this are my Services

4
content/about.md Normal file
View File

@ -0,0 +1,4 @@
---
title: About
---
This is about page

3
hugo.toml Normal file
View File

@ -0,0 +1,3 @@
baseURL = 'http://example.org/'
languageCode = 'en-us'
title = 'Services by Cat-Enby Club'

View File

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
{{ $style := resources.Get "sass/main.scss" | resources.ToCSS | resources.Minify }}
<link rel="stylesheet" href="{{ $style.Permalink }}">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ .Page.Title }}</title>
</head>
<body>
{{ partial "nav.html" }}
{{ block "main" . }}
{{ end }}
</body>
</html>

View File

@ -0,0 +1,3 @@
{{ define "main" }}
{{ .Content }}
{{ end }}

View File

@ -0,0 +1,3 @@
{{ define "main" }}
{{ .Content }}
{{ end }}

View File

@ -0,0 +1,6 @@
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/about">About</a></li>
</ul>
</nav>