commit 7a3c41ab50470872ea98da62a25d4f723a97dc22 Author: Pim Kunis Date: Sun Oct 2 17:28:54 2022 +0200 init diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..71acc48 --- /dev/null +++ b/.gitignore @@ -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 diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..628de72 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/hugo-classic"] + path = themes/hugo-classic + url = https://github.com/goodroot/hugo-classic.git diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..00e77bd --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,6 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +draft: true +--- + diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..70cb767 --- /dev/null +++ b/config.toml @@ -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)" diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..6654aca --- /dev/null +++ b/content/_index.md @@ -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 + + diff --git a/static/css/theme-override.css b/static/css/theme-override.css new file mode 100644 index 0000000..1e8f759 --- /dev/null +++ b/static/css/theme-override.css @@ -0,0 +1 @@ +footer { font-size: 90%; } diff --git a/static/images/android-chrome-192x192.png b/static/images/android-chrome-192x192.png new file mode 100644 index 0000000..4bf78af Binary files /dev/null and b/static/images/android-chrome-192x192.png differ diff --git a/static/images/android-chrome-512x512.png b/static/images/android-chrome-512x512.png new file mode 100644 index 0000000..8bf4499 Binary files /dev/null and b/static/images/android-chrome-512x512.png differ diff --git a/static/images/apple-touch-icon.png b/static/images/apple-touch-icon.png new file mode 100644 index 0000000..c5870fa Binary files /dev/null and b/static/images/apple-touch-icon.png differ diff --git a/static/images/favicon-16x16.png b/static/images/favicon-16x16.png new file mode 100644 index 0000000..5444143 Binary files /dev/null and b/static/images/favicon-16x16.png differ diff --git a/static/images/favicon-32x32.png b/static/images/favicon-32x32.png new file mode 100644 index 0000000..257696f Binary files /dev/null and b/static/images/favicon-32x32.png differ diff --git a/static/images/favicon.ico b/static/images/favicon.ico new file mode 100644 index 0000000..83ec83e Binary files /dev/null and b/static/images/favicon.ico differ diff --git a/static/images/nyan.gif b/static/images/nyan.gif new file mode 100644 index 0000000..69485ab Binary files /dev/null and b/static/images/nyan.gif differ