init
14
.gitignore
vendored
Normal 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
|
@ -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
|
@ -0,0 +1,6 @@
|
||||||
|
---
|
||||||
|
title: "{{ replace .Name "-" " " | title }}"
|
||||||
|
date: {{ .Date }}
|
||||||
|
draft: true
|
||||||
|
---
|
||||||
|
|
44
config.toml
Normal 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
|
@ -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">
|
1
static/css/theme-override.css
Normal file
|
@ -0,0 +1 @@
|
||||||
|
footer { font-size: 90%; }
|
BIN
static/images/android-chrome-192x192.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
static/images/android-chrome-512x512.png
Normal file
After Width: | Height: | Size: 6.1 KiB |
BIN
static/images/apple-touch-icon.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
static/images/favicon-16x16.png
Normal file
After Width: | Height: | Size: 187 B |
BIN
static/images/favicon-32x32.png
Normal file
After Width: | Height: | Size: 234 B |
BIN
static/images/favicon.ico
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
static/images/nyan.gif
Normal file
After Width: | Height: | Size: 82 KiB |