From d621510f116a1b9fc09b4ad253dfec3f1404bff4 Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Wed, 12 Oct 2022 10:40:37 -0500 Subject: Initial commit Signed-off-by: Matt Strapp --- .gitattributes | 5 +++ .gitignore | 15 +++++++++ .gitmodules | 3 ++ archetypes/default.md | 6 ++++ config.toml | 66 ++++++++++++++++++++++++++++++++++++++++ content/_index.md | 0 content/about.md | 9 ++++++ layouts/robots.txt | 4 +++ static/favicon.ico | Bin 0 -> 15406 bytes static/images/avatar.png | 3 ++ static/images/favicon-16x16.png | 3 ++ static/images/favicon-32x32.png | 3 ++ themes/hugo-coder | 1 + 13 files changed, 118 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 .gitmodules create mode 100644 archetypes/default.md create mode 100644 config.toml create mode 100644 content/_index.md create mode 100644 content/about.md create mode 100644 layouts/robots.txt create mode 100644 static/favicon.ico create mode 100644 static/images/avatar.png create mode 100644 static/images/favicon-16x16.png create mode 100644 static/images/favicon-32x32.png create mode 160000 themes/hugo-coder diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..1a52498 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,5 @@ +*.mp4 filter=lfs diff=lfs merge=lfs -text +*.webm filter=lfs diff=lfs merge=lfs -text +*.webp filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.jpg filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..75b6f66 --- /dev/null +++ b/.gitignore @@ -0,0 +1,15 @@ +# 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 + +.dccache \ No newline at end of file diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..ce3490a --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/hugo-coder"] + path = themes/hugo-coder + url = https://github.com/luizdepra/hugo-coder.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..e750f5d --- /dev/null +++ b/config.toml @@ -0,0 +1,66 @@ +baseURL = 'https://mattstrapp.net' +languageCode = 'en' +title = 'Sometimes less is more.' +theme = "hugo-coder" +enableRobotsTXT = true + +[markup] + [markup.goldmark] + [markup.goldmark.renderer] + unsafe = true +# [markup.highlight] +# style = "pastie" + +[params] + author = "Matt Strapp" + info = "Full Stack Developer" + description = "Matt Strapp's personal website" + keywords = "developer,personal" + avatarurl = "images/avatar.png" + #gravatar = "matt@mattstrapp.net" + + favicon_32 = "/images/favicon-32x32.png" + favicon_16 = "/images/favicon-16x16.png" + + since = 2022 + + enableTwemoji = true + + colorScheme = "dark" + hidecolorschemetoggle = false + + pygmentsstyle = "pastie" + pygmentscodefences = true + pygmentscodefencesguesssyntax = true + +[[params.social]] + name = "Git repositories" + icon = "fa fa-git fa-2x" + weight = 1 + url = "https://git.mattstrapp.net" + +[[menu.main]] + name = "About" + weight = 1 + url = "about/" + + +[[menu.main]] + name = "Contact" + weight = 2 + url = "contact/" + + +[privacy] + [privacy.disqus] + disable = true + [privacy.googleAnalytics] + disable = true + [privacy.instagram] + disable = true + [privacy.twitter] + disable = true + [privacy.vimeo] + disable = true + [privacy.youtube] + disable = true diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..e69de29 diff --git a/content/about.md b/content/about.md new file mode 100644 index 0000000..14d012c --- /dev/null +++ b/content/about.md @@ -0,0 +1,9 @@ ++++ +title = "About" +description = "About me" +date = "2022-10-11" +aliases = ["about-me", "contact"] +author = "Matt Strapp" ++++ + +This will exist eventually. \ No newline at end of file diff --git a/layouts/robots.txt b/layouts/robots.txt new file mode 100644 index 0000000..6164efa --- /dev/null +++ b/layouts/robots.txt @@ -0,0 +1,4 @@ +User-agent: * +Allow: / + +Sitemap: {{ .Site.BaseURL }}sitemap.xml \ No newline at end of file diff --git a/static/favicon.ico b/static/favicon.ico new file mode 100644 index 0000000..bb91e15 Binary files /dev/null and b/static/favicon.ico differ diff --git a/static/images/avatar.png b/static/images/avatar.png new file mode 100644 index 0000000..0facf9b --- /dev/null +++ b/static/images/avatar.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:406e8f4e4a1adc87ead24324202c3762d38db1c0f2fd0c158fb7bfa3f09f5210 +size 27206 diff --git a/static/images/favicon-16x16.png b/static/images/favicon-16x16.png new file mode 100644 index 0000000..b87b3af --- /dev/null +++ b/static/images/favicon-16x16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:136918b5cd4d8de740817083ab9376cfad722def2ae640ef23882df924b0c3e8 +size 1420 diff --git a/static/images/favicon-32x32.png b/static/images/favicon-32x32.png new file mode 100644 index 0000000..c89779e --- /dev/null +++ b/static/images/favicon-32x32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8001422020e9235c739d359b6ce40fd13a991f8d395db641d179f9eb751e5d83 +size 2922 diff --git a/themes/hugo-coder b/themes/hugo-coder new file mode 160000 index 0000000..a98c473 --- /dev/null +++ b/themes/hugo-coder @@ -0,0 +1 @@ +Subproject commit a98c473a2669c19dd54863cc66289638883a3ac0 -- cgit v1.2.3