diff --git a/README.md b/README.md index 82f63e0..1ff09e8 100644 --- a/README.md +++ b/README.md @@ -2,3 +2,31 @@ > My personal blog, powered by [Hugo](https://gohugo.io/) and the > [Blowfish](https://blowfish.page/) theme + +## Building + +[Install Nix](https://nixos.org/), then run: + +```shell +git clone --recursive https://git.nicolabelluti.me/nicolabelluti/blog.git +cd blog +nix develop # Enter the dev environment +hugo --minify --gc +``` + +You can find the source code of the website in the `public/` directory + +If you want to start the dev server, you need to run: + +```shell +hugo server --buildDrafts --buildFuture +``` + +## Create a new article + +To create a new article using the default structure +(`posts///`), use this command: + +```shell +hugo new content/posts/$(date +%Y/%m)/
/index.md +``` diff --git a/archetypes/default.md b/archetypes/default.md index c6f3fce..e2718e5 100644 --- a/archetypes/default.md +++ b/archetypes/default.md @@ -1,5 +1,14 @@ +++ -title = '{{ replace .File.ContentBaseName "-" " " | title }}' -date = {{ .Date }} +title = "{{ replace .File.ContentBaseName "-" " " | title }}" +summary = "" +date = "{{ dateFormat "2006-01-02" .Date }}" + +tags = [""] +categories = [""] +# series = [""] +# series_order = 1 + draft = true +++ + +> Hello, world! diff --git a/assets/img/avatar.jpg b/assets/img/avatar.jpg new file mode 100644 index 0000000..6e1072c Binary files /dev/null and b/assets/img/avatar.jpg differ diff --git a/assets/img/home-bg.jpg b/assets/img/home-bg.jpg new file mode 100644 index 0000000..b94f026 Binary files /dev/null and b/assets/img/home-bg.jpg differ diff --git a/config/_default/hugo.toml b/config/_default/hugo.toml index 46dc7ff..b0739c2 100644 --- a/config/_default/hugo.toml +++ b/config/_default/hugo.toml @@ -2,3 +2,10 @@ baseURL = "https://nicolabelluti.me/" # https://github.com/nunocoracao/blowfish theme = "blowfish" + +[outputs] + home = [ + "HTML", # Enable the website + "RSS", # Enable the RSS feed + "JSON", # Enable the search + ] diff --git a/config/_default/languages.en.toml b/config/_default/languages.en.toml index e27e276..e885ee1 100644 --- a/config/_default/languages.en.toml +++ b/config/_default/languages.en.toml @@ -1 +1,28 @@ title = "Nicola's Blog" + +languageName = "English" + +[params] + displayName = "EN" + isoCode = "en" + + copyright = """ \ + Made by **Nicola Belluti** with ❤️ | \ + [*GNU AGPLv3.0 license*](https://git.nicolabelluti.me/nicolabelluti/blog/src/branch/main/LICENSE) \ + """ + +[author] + name = "Nicola Belluti" + image = "/img/avatar.jpg" + headline = "Coding while listening to good music 🧑🏻‍💻" + bio = """ \ + An IT guy in love with the open source world. \ + [***About me...***](/about-me) \ + """ + links = [ + { code = "https://git.nicolabelluti.me/nicolabelluti" }, + { email = "mailto:nicolabelluti@protonmail.com" }, + { telegram = "https://t.me/nicolabelluti" }, + { mug-hot = "https://buymeacoffee.com/nicolabelluti" }, + { rss = "/index.xml" }, + ] diff --git a/config/_default/markup.toml b/config/_default/markup.toml new file mode 100644 index 0000000..f5a8036 --- /dev/null +++ b/config/_default/markup.toml @@ -0,0 +1,5 @@ +[goldmark.renderer] + unsafe = true + +[highlight] + noClasses = false diff --git a/config/_default/menus.en.toml b/config/_default/menus.en.toml new file mode 100644 index 0000000..087051d --- /dev/null +++ b/config/_default/menus.en.toml @@ -0,0 +1,32 @@ +[[main]] + name = "Blog" + weight = 10 + +[[main]] + name = "Posts" + pageRef = "/posts" + weight = 11 + parent = "Blog" + +[[main]] + name = "Categories" + pageRef = "/categories" + weight = 12 + parent = "Blog" + +[[main]] + name = "Series" + pageRef = "/series" + weight = 13 + parent = "Blog" + +[[main]] + name = "About me" + pageRef = "/about-me" + weight = 20 + +[[main]] + identifier = "rss" + pre = "rss" + url = "/index.xml" + weight = 30 diff --git a/config/_default/params.toml b/config/_default/params.toml new file mode 100644 index 0000000..daa023f --- /dev/null +++ b/config/_default/params.toml @@ -0,0 +1,69 @@ +# Default article background image +# Credits: https://unsplash.com/photos/macbook-pro-JO_S6ewBqAk +defaultBackgroundImage = "/img/home-bg.jpg" + +# Theme +colorScheme = "blowfish" +defaultAppearance = "dark" +autoSwitchAppearance = "false" +enableSearch = true + +# Article settings +enableCodeCopy = true +smartTOC = true +smartTOCHideUnfocusedChildren = true + +[header] + layout = "fixed" + +[homepage] + # Show the background + # Credits: https://unsplash.com/photos/macbook-pro-JO_S6ewBqAk + layout = "background" + layoutBackgroundBlur = true + homepageImage = "/img/home-bg.jpg" + + # Show recent posts + showRecent = true + cardView = true + showRecentItems = 9 + showMoreLink = true + showMoreLinkDest = "/posts" + +[article] + # Show the author + showAuthor = true + showAuthorBottom = true + + # Show the background + showHero = true + heroStyle = "background" + layoutBackgroundBlur = true + layoutBackgroundHeaderSpace = true + + # Show the button to see the source code + showEdit = true + editURL = "https://git.nicolabelluti.me/nicolabelluti/blog/src/branch/main/content" + + # Show the sharing links + sharingLinks = [ + "linkedin", + "twitter", + "reddit", + "whatsapp", + "telegram", + "pinterest", + "facebook", + "email", + ] + + # Misc + showHeadingAnchors = true + showPagination = true + showReadingTime = true + showTableOfContents = true + showTaxonomies = true + showZenMode = true + +[list] + cardView = true diff --git a/config/_default/taxonomies.toml b/config/_default/taxonomies.toml new file mode 100644 index 0000000..5cde400 --- /dev/null +++ b/config/_default/taxonomies.toml @@ -0,0 +1,3 @@ +category = "categories" +series = "series" +tag = "tags" diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..e69de29 diff --git a/content/about-me/index.md b/content/about-me/index.md new file mode 100644 index 0000000..3726617 --- /dev/null +++ b/content/about-me/index.md @@ -0,0 +1,16 @@ ++++ +title = "A little bit about me..." + +layoutBackgroundHeaderSpace = false + +sharingLinks = false +showAuthor = false +showDate = false +showEdit = false +showPagination = false +showReadingTime = false +showTableOfContents = false +showTaxonomies = false +showWordCount = false +showZenMode = false ++++