summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobby Zambito <contact@robbyzambito.me>2020-10-30 09:36:31 -0400
committerRobby Zambito <contact@robbyzambito.me>2020-10-30 09:36:31 -0400
commit25fd81cc7f67cf125bd6bacad9966e8580d49b0a (patch)
treedf7ff28a89ffba45bbea9727813811cb275e13b2
Initial commit
-rw-r--r--archetypes/default.md6
-rw-r--r--config.toml56
-rw-r--r--content/about.md21
-rw-r--r--content/posts/hello-world.md12
m---------themes/hugo-ink0
5 files changed, 95 insertions, 0 deletions
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..6574f09
--- /dev/null
+++ b/config.toml
@@ -0,0 +1,56 @@
+baseURL = "https://robbyzambito.me/"
+languageCode = "en-us"
+title = "Robby Zambito"
+theme = "hugo-ink"
+paginate = 5
+
+copyright = "© Copyright notice"
+
+pygmentsstyle = "vs"
+pygmentscodefences = true
+pygmentscodefencesguesssyntax = true
+
+[params]
+ subtitle = "Software Engineer"
+ avatar = "https://git.robbyzambito.me/avatars/1e72c5a6ad87cf7eb40306944cb9ed63"
+
+ featherIconsCDN = true
+
+ mode = "auto"
+ # customCSS = "css/custom.css" # Custom CSS applied to default styles.
+ # customDarkCSS = "css/custom-dark.css" # Custom styles applied to dark mode css.
+ # customJS = ["js/custom.js", "js/custom1.js"] # Custom JS scripts.
+
+# Nav.
+[[menu.main]]
+name = "Home"
+url = "/"
+weight = 1
+
+[[menu.main]]
+name = "All posts"
+url = "/posts"
+weight = 2
+
+[[menu.main]]
+name = "About"
+url = "/about"
+weight = 3
+
+[[menu.main]]
+name = "Tags"
+url = "/tags"
+weight = 4
+
+[[params.social]]
+name = "Gitea"
+icon = "code"
+url = "https://git.robbyzambito.me/Zambyte"
+
+[[params.social]]
+name = "RSS"
+icon = "rss"
+url = "/index.xml"
+
+[taxonomies]
+ tag = "tags"
diff --git a/content/about.md b/content/about.md
new file mode 100644
index 0000000..635618d
--- /dev/null
+++ b/content/about.md
@@ -0,0 +1,21 @@
+---
+title: "About"
+date: 2020-10-30T09:01:58-04:00
+draft: false
+---
+
+## Contact
+- Email: contact@robbyzambito.me
+- Jabber: zambyte@member.fsf.org
+- Telegram: [@Zambyte](http://t.me/Zambyte)
+- Discord: Zambito1#2236
+- Pleroma (primary): [@robby@zoinks.one](https://zoinks.one/robby)
+- Pleroma (family): [@robby@social.zambito.xyz](https://social.zambito.xyz/@robby)
+- Steam: [steamcommunity.com/id/zambito1](https://steamcommunity.com/id/zambito1)
+
+## Webring
+- Liz Simonelli: [lizsimonelli.dev](https://lizsimonelli.dev)
+- Syed Rehman: [syed.dev](https://syed.dev)
+- Conner LaPage-Jenkins: [lapagejenkins.dev](https://lapagejenkins.dev)
+- Spencer Hall: [share.pinfosec.dev](https://share.pinfosec.dev)
+
diff --git a/content/posts/hello-world.md b/content/posts/hello-world.md
new file mode 100644
index 0000000..cc4c983
--- /dev/null
+++ b/content/posts/hello-world.md
@@ -0,0 +1,12 @@
+---
+title: "Hello World"
+date: 2020-10-30T09:19:45-04:00
+draft: false
+tags: [introduction]
+---
+
+I am ditching my old site for this one for several reasons. My old site was built in Vue, and I thought it looked very nice. However because the entire site was built in Vue, it could not be viewed without JavaScript. I don't have issues with using JavaScript in general, but it seemed a little absured that a site as simple as mine required it to run.
+
+Requiring JavaScript also meant that my site could not be properly archived by [The Wayback Machine](https://web.archive.org/). I enjoy looking at old versions of websites, so being able to look back on my own website in the future is important to me.
+
+I hope to use this site as a place to publish my ideas, and write about projects that I'm working on. You can get regular updates by following the [RSS feed](/index.xml)
diff --git a/themes/hugo-ink b/themes/hugo-ink
new file mode 160000
+Subproject ad0850ae0010e6d7dab2a709dc3e156f884f0de