From b5bfeb9030d6e2561878efaf62d27d78d401a856 Mon Sep 17 00:00:00 2001 From: John Costa Date: Tue, 14 Nov 2023 23:34:43 +0000 Subject: [PATCH] FEAT: Starting with hugo So far, really like it --- .gitmodules | 3 +++ quickstart/.hugo_build.lock | 0 quickstart/archetypes/default.md | 5 ++++ quickstart/assets/style.css | 0 quickstart/content/_index.md | 22 ++++++++++++++++++ quickstart/content/blog/_index.md | 6 +++++ quickstart/content/blog/my-first-post.md | 8 +++++++ quickstart/hugo.toml | 29 ++++++++++++++++++++++++ quickstart/themes/risotto | 1 + 9 files changed, 74 insertions(+) create mode 100644 .gitmodules create mode 100644 quickstart/.hugo_build.lock create mode 100644 quickstart/archetypes/default.md create mode 100644 quickstart/assets/style.css create mode 100644 quickstart/content/_index.md create mode 100644 quickstart/content/blog/_index.md create mode 100644 quickstart/content/blog/my-first-post.md create mode 100644 quickstart/hugo.toml create mode 160000 quickstart/themes/risotto diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..c132b35 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "quickstart/themes/risotto"] + path = quickstart/themes/risotto + url = https://github.com/joeroe/risotto.git diff --git a/quickstart/.hugo_build.lock b/quickstart/.hugo_build.lock new file mode 100644 index 0000000..e69de29 diff --git a/quickstart/archetypes/default.md b/quickstart/archetypes/default.md new file mode 100644 index 0000000..c6f3fce --- /dev/null +++ b/quickstart/archetypes/default.md @@ -0,0 +1,5 @@ ++++ +title = '{{ replace .File.ContentBaseName "-" " " | title }}' +date = {{ .Date }} +draft = true ++++ diff --git a/quickstart/assets/style.css b/quickstart/assets/style.css new file mode 100644 index 0000000..e69de29 diff --git a/quickstart/content/_index.md b/quickstart/content/_index.md new file mode 100644 index 0000000..c977356 --- /dev/null +++ b/quickstart/content/_index.md @@ -0,0 +1,22 @@ ++++ +title = 'Home' +date = 2023-11-14T17:55:14Z ++++ + +# Hi, I'm John + +--- + +I am a Software Engineer, currently working at Decipad. I'm interested in various subjects including: Compilers, Web Development, Distributed System and many more. + +--- + +# Projects + +--- + +I have some Projects + +- Bruh 1 +- Bruh 2 +- Bruh 3 diff --git a/quickstart/content/blog/_index.md b/quickstart/content/blog/_index.md new file mode 100644 index 0000000..90a73dc --- /dev/null +++ b/quickstart/content/blog/_index.md @@ -0,0 +1,6 @@ ++++ +title = 'Blog' +date = 2023-11-14T17:55:14Z ++++ + +This is the blog page diff --git a/quickstart/content/blog/my-first-post.md b/quickstart/content/blog/my-first-post.md new file mode 100644 index 0000000..6c1ac61 --- /dev/null +++ b/quickstart/content/blog/my-first-post.md @@ -0,0 +1,8 @@ ++++ +title = 'My First Post' +date = 2023-11-14T17:55:14Z ++++ + +# Hello World + +This is a post diff --git a/quickstart/hugo.toml b/quickstart/hugo.toml new file mode 100644 index 0000000..3eed864 --- /dev/null +++ b/quickstart/hugo.toml @@ -0,0 +1,29 @@ +baseURL = 'https://example.org/' +languageCode = 'en-uk' +title = 'John Costa' +theme = 'risotto' + +[menu] +[[menu.main]] + name = 'Blog' + pageRef = '/blog' + +# Sidebar: about/bio +[params.about] +title = "John Costa" +description = "A really good software engineer" + +# Sidebar: social links +# Available icon sets: +# * FontAwesome 6 ('fa-brands', 'fa-normal', or 'fa-solid' for brands) +# * Academicons ('ai ai-') + +[[params.socialLinks]] +icon = "fa-brands fa-github" +title = "GitHub" +url = "https://github.com/joeroe/risotto" + +[[params.socialLinks]] +icon = "fa-solid fa-envelope" +title = "Email" +url = "mailto:example@example.com" diff --git a/quickstart/themes/risotto b/quickstart/themes/risotto new file mode 160000 index 0000000..4343550 --- /dev/null +++ b/quickstart/themes/risotto @@ -0,0 +1 @@ +Subproject commit 4343550d785d8cce942ac5109aa9fdd9d9a70823