commit aca43e314621c74a37f28332e32f446ac4652674 Author: andy Date: Sat Aug 20 09:38:47 2022 +0100 skeleton diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7b62a71 --- /dev/null +++ b/.gitignore @@ -0,0 +1,13 @@ +# 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 \ 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..3fb5daf --- /dev/null +++ b/config.toml @@ -0,0 +1,44 @@ +baseURL = 'https://sarsoo.xyz/' +languageCode = 'en-us' +title = 'sarsoo.xyz' +theme = 'hugo-coder' + +[params] + author = "sarsoo" + info = "dev & engineering" + description = "sarsoo dev & engineering portfolio" + since = "2020" + keywords = "dev,engineering" + avatarurl = "images/avatar.jpg" + hideColorSchemeToggle = true + +[[params.social]] + name = "Instagram" + icon = "fa fa-instagram fa-2x" + weight = 1 + url = "https://www.instagram.com/pack_it_in_/" +[[params.social]] + name = "Github" + icon = "fa fa-github fa-2x" + weight = 2 + url = "https://github.com/sarsoo/" +[[params.social]] + name = "Twitter" + icon = "fa fa-twitter fa-2x" + weight = 3 + url = "https://twitter.com/sarsooxyz/" +[[params.social]] + name = "Last.fm" + icon = "fa fa-lastfm fa-2x" + weight = 4 + url = "https://last.fm/user/sarsoo/" +[[params.social]] + name = "Linkedin" + icon = "fa fa-linkedin fa-2x" + weight = 4 + url = "https://www.linkedin.com/in/andypack/" + +[[menu.main]] + name = "Posts" + weight = 1 + url = "posts/" \ No newline at end of file diff --git a/content/posts/my-first-post.md b/content/posts/my-first-post.md new file mode 100644 index 0000000..0eb1f3d --- /dev/null +++ b/content/posts/my-first-post.md @@ -0,0 +1,12 @@ +--- +title: "My First Post" +date: 2022-08-18T11:40:40+01:00 +draft: false +--- + +Title +=========== + +## Subtitle + +Hello World \ No newline at end of file diff --git a/static/images/avatar.jpg b/static/images/avatar.jpg new file mode 100644 index 0000000..aa7756b Binary files /dev/null and b/static/images/avatar.jpg differ