This commit is contained in:
Pim Kunis 2022-10-02 17:28:54 +02:00
commit 7a3c41ab50
13 changed files with 78 additions and 0 deletions

14
.gitignore vendored Normal file
View file

@ -0,0 +1,14 @@
# Generated files by hugo
/public/
/resources/_gen/
/assets/jsconfig.json
hugo_stats.json
# Executable may be added to repository
hugo.exe
hugo.darwin
hugo.linux
# Temporary lock file while building
/.hugo_build.lock
themes

3
.gitmodules vendored Normal file
View file

@ -0,0 +1,3 @@
[submodule "themes/hugo-classic"]
path = themes/hugo-classic
url = https://github.com/goodroot/hugo-classic.git

6
archetypes/default.md Normal file
View file

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

44
config.toml Normal file
View file

@ -0,0 +1,44 @@
baseurl = "/"
enableEmoji = true
footnotereturnlinkcontents = "↩"
googleAnalytics = ""
ignoreFiles = ["\\.Rmd$", "_files$", "_cache$"]
languageCode = "en-us"
theme = "hugo-classic"
title = "pizzeria"
[markup.goldmark.renderer]
unsafe = true
[markup.highlight]
anchorLineNos = false
codeFences = true
guessSyntax = false
hl_Lines = ""
lineAnchors = ""
lineNoStart = 1
lineNos = false
lineNumbersInTable = true
noClasses = true
style = "monokai"
tabWidth = 4
[permalinks]
post = "/post/:year/:month/:day/:slug/"
#[[menu.main]]
#name = "Categories"
#url = "/categories/"
#weight = 1
#[[menu.main]]
#name = "Tags"
#url = "/tags/"
#weight = 2
#[[menu.feed]]
#name = "Subscribe"
#url = "/index.xml"
[params]
custom_css = ["css/theme-override.css"]
description = "A simple, minimal blog for those who love text."
footer = "[Github](https://github.com/pizzapim)"

10
content/_index.md Normal file
View file

@ -0,0 +1,10 @@
---
title: Home
description: "The personal writings and expressions of Grayfox, otherwise known as you too and everyone else. It is a loving and silly place."
---
## :exclamation: Attention :exclamation:
enjoy this nyan cat
<img src="/images/nyan.gif">

View file

@ -0,0 +1 @@
footer { font-size: 90%; }

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 187 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 234 B

BIN
static/images/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

BIN
static/images/nyan.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 KiB