From 867cf499ef542b3b6c2c7314fc5a859e11e0fbc9 Mon Sep 17 00:00:00 2001 From: BBaoVanC Date: Thu, 20 May 2021 11:31:35 -0500 Subject: [PATCH] Switch to hugo-bearblog theme --- .gitmodules | 6 +- archetypes/blog.md | 13 ++ archetypes/default.md | 12 +- assets/css/comments.css | 22 --- config.toml | 145 ++++++------------ content/_index.md | 3 + ...t-processes-to-bind-to-privileged-ports.md | 15 +- .../checkra1n-gui-on-other-distros.md | 20 ++- .../edited-in-middle-of-message-discord.md | 17 +- .../new-comment-system-again.md | 18 ++- content/{posts => blog}/new-comment-system.md | 15 +- ...text-substitution-in-discord-using-sed.md} | 14 +- content/contact.md | 10 ++ content/donate.md | 18 +++ content/gpg-fingerprints.md | 17 ++ content/links.md | 15 +- content/referral-codes.md | 15 ++ layouts/_default/single.html | 20 +++ layouts/partials/comments.html | 15 -- static/img/favicon.png | Bin 0 -> 6670 bytes themes/hugo-bearblog | 1 + themes/terminal | 1 - 22 files changed, 229 insertions(+), 183 deletions(-) create mode 100644 archetypes/blog.md delete mode 100644 assets/css/comments.css create mode 100644 content/_index.md rename content/{posts => blog}/allow-non-root-processes-to-bind-to-privileged-ports.md (91%) rename content/{posts => blog}/checkra1n-gui-on-other-distros.md (84%) rename content/{posts => blog}/edited-in-middle-of-message-discord.md (75%) rename content/{posts => blog}/new-comment-system-again.md (78%) rename content/{posts => blog}/new-comment-system.md (86%) rename content/{posts/sed-text-substitution-in-discord.md => blog/text-substitution-in-discord-using-sed.md} (76%) create mode 100644 content/contact.md create mode 100644 content/donate.md create mode 100644 content/gpg-fingerprints.md create mode 100644 content/referral-codes.md create mode 100644 layouts/_default/single.html delete mode 100644 layouts/partials/comments.html create mode 100644 static/img/favicon.png create mode 160000 themes/hugo-bearblog delete mode 160000 themes/terminal diff --git a/.gitmodules b/.gitmodules index a6851ba..c53b474 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ -[submodule "themes/terminal"] - path = themes/terminal - url = https://github.com/panr/hugo-theme-terminal.git +[submodule "themes/hugo-bearblog"] + path = themes/hugo-bearblog + url = https://github.com/janraasch/hugo-bearblog.git diff --git a/archetypes/blog.md b/archetypes/blog.md new file mode 100644 index 0000000..136b4a0 --- /dev/null +++ b/archetypes/blog.md @@ -0,0 +1,13 @@ ++++ +title = "{{ replace .Name "-" " " | title }}" +date = "{{ .Date }}" +# Format date like 2006-01-02 (it gives an error if I use .Format) + +description = """ +Lorem ipsum +""" + +tags = [ + "", +] ++++ diff --git a/archetypes/default.md b/archetypes/default.md index 00e77bd..b1a6dd7 100644 --- a/archetypes/default.md +++ b/archetypes/default.md @@ -1,6 +1,8 @@ ---- -title: "{{ replace .Name "-" " " | title }}" -date: {{ .Date }} -draft: true ---- ++++ +title = "{{ replace .Name "-" " " | title }}" +menu = "main" +description = """ +Lorem ipsum +""" ++++ diff --git a/assets/css/comments.css b/assets/css/comments.css deleted file mode 100644 index 4b0d342..0000000 --- a/assets/css/comments.css +++ /dev/null @@ -1,22 +0,0 @@ -.commento-root * { - color: white; -} - -.commento-root .commento-logged-container .commento-logged-in-as .commento-name, -.commento-root .commento-anonymous-checkbox-container input[type="checkbox"] + label { - color: rgb(134, 142, 150); -} - -.commento-root textarea { - border-color: rgba(255, 255, 255, 0.1); - background-color: rgba(0, 0, 0, 0); - color: white; -} - -.commento-root .commento-card { - border-top-color: rgba(255, 255, 255, 0.1); -} - -.commento-root .commento-dark-card { - background-color: rgb(64, 64, 64); -} diff --git a/config.toml b/config.toml index e9c795f..391ec94 100644 --- a/config.toml +++ b/config.toml @@ -1,105 +1,62 @@ -baseURL = "https://bbaovanc.com/blog/" -languageCode = "en-us" -theme = "terminal" -paginate = 5 -enableGitInfo = true -# [permalinks] -# posts = "/:year/:month/:title/" +baseURL = "https://bbaovanc.com" + +# The name of this wonderful theme ;-). +theme = 'hugo-bearblog' + +# Basic metadata configuration for your blog. +title = "bbaovanc's blog" +author = "bbaovanc" +copyright = "Copyright © 2021, bbaovanc." +languageCode = "en-US" + +# Generate a nice robots.txt for SEO +enableRobotsTXT = true + +# Generate "Bearblog"-like URLs !only!, see https://bearblog.dev/. +disableKinds = ["taxonomy"] +ignoreErrors = ["error-disable-taxonomy"] +[permalinks] + #blog = "/:slug/" + tags = "/blog/:slug" [params] - # dir name of your main content (default is `content/posts`). - # the list of set content will show up on your index page (baseurl). - contentTypeName = "posts" + # The "description" of your website. This is used in the meta data of your generated html. + description = "My personal blog site" - # ["orange", "blue", "red", "green", "pink"] - themeColor = "blue" - - # if you set this to 0, only submenu trigger will be visible - showMenuItems = 6 - - # show selector to switch language - showLanguageSelector = false - - # set theme to full screen width - fullWidthTheme = false - - # center theme with default width - centerTheme = true - - # set a custom favicon (default is a `themeColor` square) + # The path to your "favicon". This should be a square (at least 32px x 32px) png-file. + # Hint: It's good practise to also put a "favicon.ico"-file into your "static"-folder. favicon = "img/favicon.ico" - # set post to show the last updated - # If you use git, you can set `enableGitInfo` to `true` and then post will automatically get the last updated - showLastUpdated = true - # Provide a string as a prefix for the last update date. By default, it looks like this: 2020-xx-xx [Updated: 2020-xx-xx] :: Author - # updatedDatePrefix = "Updated" + # These "images" are used for the structured data templates. This will show up, when + # services like Twitter or Slack want to generate a preview of a link to your site. + # See https://gohugo.io/templates/internal#twitter-cards and + # https://gohugo.io/templates/internal#open-graph. + images = ["img/favicon.png"] - # set all headings to their default size (depending on browser settings) - # it's set to `true` by default - # oneHeadingSize = false + # Another "title" :-). This one is used as the site_name on the Hugo's internal + # opengraph structured data template. + # See https://ogp.me/ and https://gohugo.io/templates/internal#open-graph. + title = "bbaovanc's blog" -[params.twitter] - # set Twitter handles for Twitter cards - # see https://developer.twitter.com/en/docs/tweets/optimize-with-cards/guides/getting-started#card-and-content-attribution - # do not include @ - creator = "" - site = "" + # This theme will, by default, inject a made-with-line at the bottom of the page. + # You can turn it off, but we would really appreciate if you don’t :-). + # hideMadeWithLine = true -[languages] - [languages.en] - languageName = "English" - title = "bbaovanc's blog" - subtitle = "My personal blog site" - owner = "bbaovanc" - keywords = "" - copyright = "" - menuMore = "Show more" - readMore = "Read more" - readOtherPosts = "Read other posts" - newerPosts = "Newer posts" - olderPosts = "Older posts" - missingContentMessage = "Page not found..." - missingBackButtonLabel = "Back to home page" + # By default, this theme displays dates with a format like "02 Jan, 2006", but + # you can customize it by setting the `dateFormat` param in your site's config + # file. See [Hugo's Format function docs](https://gohugo.io/functions/format/) + # for details. An example TOML config that uses [ISO + # 8601](https://en.wikipedia.org/wiki/ISO_8601) format: + # dateFormat = "2006-01-02" - [languages.en.params.logo] - logoText = "bbaovanc's blog" - logoHomeLink = "/blog/" +[menu] + [[menu.main]] + identifier = "rss" + name = "RSS Feed" + url = "/blog/index.xml" - [languages.en.menu] - [[languages.en.menu.main]] - identifier = "tags" - name = "Tags" - url = "/tags" - weight = 10 - - [[languages.en.menu.main]] - identifier = "links" - name = "Links" - url = "/links" - weight = 20 - - [[languages.en.menu.main]] - identifier = "rss" - name = "RSS Feed" - url = "/posts/index.xml" - weight = 30 - - [[languages.en.menu.main]] - identifier = "email-me" - name = "Email Me" - url = "mailto:contact@bbaovanc.com" - weight = 40 - - [[languages.en.menu.main]] - identifier = "main-website" - name = "Main Website" - url = "https://bbaovanc.com/" - weight = 50 - - [[languages.en.menu.main]] - identifier = "source-code" - name = "Source Code" - url = "https://git.bbaovanc.com/bbaovanc.com/blog" - weight = 60 + [[menu.main]] + identifier = "git-repo" + name = "Source Code" + url = "https://git.bbaovanc.com/bbaovanc.com/blog" diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..485ad13 --- /dev/null +++ b/content/_index.md @@ -0,0 +1,3 @@ +This is my website. + +https://boba.best is also my website. diff --git a/content/posts/allow-non-root-processes-to-bind-to-privileged-ports.md b/content/blog/allow-non-root-processes-to-bind-to-privileged-ports.md similarity index 91% rename from content/posts/allow-non-root-processes-to-bind-to-privileged-ports.md rename to content/blog/allow-non-root-processes-to-bind-to-privileged-ports.md index 0ca33a4..c79d9cf 100644 --- a/content/posts/allow-non-root-processes-to-bind-to-privileged-ports.md +++ b/content/blog/allow-non-root-processes-to-bind-to-privileged-ports.md @@ -1,18 +1,19 @@ +++ title = "Allow Non Root Processes to Bind to Privileged Ports" -date = "2021-03-28T20:03:16-05:00" -author = "bbaovanc" -tags = ["guide", "linux"] -keywords = ["linux", "privileged", "ports", "tutorial", "guide", "gitea", -"systemd"] +date = "2021-03-28" +aliases = [ + "posts/allow-non-root-processes-to-bind-to-privileged-ports/", +] description = """ In Linux, processes cannot bind to privileged ports (<=1024) unless they are running as root. Here's how to allow any process to bind to privileged ports. """ -showFullContent = false -toc = true +tags = [ + "guide", + "linux", +] +++ ## Introduction diff --git a/content/posts/checkra1n-gui-on-other-distros.md b/content/blog/checkra1n-gui-on-other-distros.md similarity index 84% rename from content/posts/checkra1n-gui-on-other-distros.md rename to content/blog/checkra1n-gui-on-other-distros.md index 7193bd3..0d69f85 100644 --- a/content/posts/checkra1n-gui-on-other-distros.md +++ b/content/blog/checkra1n-gui-on-other-distros.md @@ -1,19 +1,25 @@ +++ title = "Checkra1n GUI on Other Distros" -date = "2021-03-25T21:19:51-05:00" -author = "bbaovanc" -cover = "media/checkra1n-gui-on-arch-linux.webp" -tags = ["guide", "linux", "archlinux", "jailbreak", "checkra1n"] -keywords = ["checkra1n", "gui", "linux", "arch linux"] +date = "2021-03-25" +aliases = [ + "posts/checkra1n-gui-on-other-distros/", +] description = """ You can run the GUI version of checkra1n on non Debian-based distributions. """ -showFullContent = false -toc = true +tags = [ + "guide", + "linux", + "archlinux", + "jailbreak", + "checkra1n", +] +++ +![Checkra1n GUI running on Arch Linux](/media/checkra1n-gui-on-arch-linux.webp) + ## Introduction The official cross-distribution build of checkra1n only contains a CLI and TUI. diff --git a/content/posts/edited-in-middle-of-message-discord.md b/content/blog/edited-in-middle-of-message-discord.md similarity index 75% rename from content/posts/edited-in-middle-of-message-discord.md rename to content/blog/edited-in-middle-of-message-discord.md index bbc5bfb..fae7823 100644 --- a/content/posts/edited-in-middle-of-message-discord.md +++ b/content/blog/edited-in-middle-of-message-discord.md @@ -1,19 +1,24 @@ +++ title = "Put (edited) in the middle of a message in Discord" -date = "2021-03-25T18:48:34-05:00" -author = "bbaovanc" -cover = "media/discord-tricks/edited-in-middle-of-message.webp" -tags = ["tutorial", "discord", "discord-tricks"] -keywords = ["discord", "edited"] +date = "2021-03-25" +aliases = [ + "posts/edited-in-middle-of-message-discord/", +] description = """ With a bit of trickery using the RLE character (U+202B), you can get the (edited) text on a message to be somewhere other than at the end of the message. """ -showFullContent = false +tags = [ + "tutorial", + "discord", + "discord-tricks", +] +++ +![Example image](/media/discord-tricks/edited-in-middle-of-message.webp) + ## Tutorial 1. Copy the "right-to-left embedding" character (U+202A) to your clipboard. diff --git a/content/posts/new-comment-system-again.md b/content/blog/new-comment-system-again.md similarity index 78% rename from content/posts/new-comment-system-again.md rename to content/blog/new-comment-system-again.md index 1b1ba73..793f5e0 100644 --- a/content/posts/new-comment-system-again.md +++ b/content/blog/new-comment-system-again.md @@ -1,16 +1,20 @@ +++ title = "New Comment System (again)" -date = "2021-04-17T00:08:30-05:00" -author = "bbaovanc" -tags = ["announcement", "hugo", "blog"] -keywords = ["hugo", "comment system", "blog", "commento"] +date = "2021-04-17" +aliases = [ + "posts/new-comment-system-again/", +] description = """ I decided to switch my comment system from Isso to [Commento](https://www.commento.io/) """ -showFullContent = false +tags = [ + "announcement", + "hugo", + "blog", +] +++ ## Isso vs Commento @@ -24,10 +28,10 @@ this working on Isso), and a nicer design. I also was able to write some supports SSO, so I might add support for signing up with GitHub, and possibly GitLab. -## Summary of the [first post]({{< ref "/posts/new-comment-system" >}}) +## Summary of the [first post]({{< ref "/blog/new-comment-system" >}}) If you haven't read the -[New Comment System]({{< ref "/posts/new-comment-system" >}}) post, here's the +[New Comment System]({{< ref "/blog/new-comment-system" >}}) post, here's the most important information. There's a comment section at the bottom of each post where you can view and post comments. You can post anonymously, or create an account so you can show your username and get email notifications. You can also diff --git a/content/posts/new-comment-system.md b/content/blog/new-comment-system.md similarity index 86% rename from content/posts/new-comment-system.md rename to content/blog/new-comment-system.md index dbdb28d..ce9a439 100644 --- a/content/posts/new-comment-system.md +++ b/content/blog/new-comment-system.md @@ -1,16 +1,19 @@ +++ title = "New Comment System" -date = "2021-04-11T00:17:13-05:00" -author = "bbaovanc" -tags = ["announcement", "hugo", "blog"] -keywords = ["hugo", "comment system", "blog", "isso"] +date = "2021-04-11" +aliases = [ + "posts/new-comment-system/", +] description = """ I added a comment system to my blog, using [Isso](https://posativ.org/isso/). """ -showFullContent = false -toc = true +tags = [ + "announcement", + "hugo", + "blog", +] +++ ## About diff --git a/content/posts/sed-text-substitution-in-discord.md b/content/blog/text-substitution-in-discord-using-sed.md similarity index 76% rename from content/posts/sed-text-substitution-in-discord.md rename to content/blog/text-substitution-in-discord-using-sed.md index 7a2e9a6..6140c78 100644 --- a/content/posts/sed-text-substitution-in-discord.md +++ b/content/blog/text-substitution-in-discord-using-sed.md @@ -1,15 +1,19 @@ +++ title = "Text Substitution in Discord using `sed`" -date = "2021-03-25T18:48:15-05:00" -author = "bbaovanc" -tags = ["tutorial", "discord", "discord-tricks"] -keywords = ["discord", "sed", "text", "replacement"] +date = "2021-03-25" +aliases = [ + "posts/text-substitution-in-discord-using-sed/", +] description = """ Discord has (very primitive) support for text replacement using `sed` syntax. """ -showFullContent = false +tags = [ + "tutorial", + "discord", + "discord-tricks", +] +++ ## Tutorial diff --git a/content/contact.md b/content/contact.md new file mode 100644 index 0000000..0a2dd09 --- /dev/null +++ b/content/contact.md @@ -0,0 +1,10 @@ ++++ +title = "Contact" +menu = "main" + +description = """ +List of ways to contact me +""" ++++ + +- [Email me](mailto:contact@bbaovanc.com) diff --git a/content/donate.md b/content/donate.md new file mode 100644 index 0000000..20b2fad --- /dev/null +++ b/content/donate.md @@ -0,0 +1,18 @@ ++++ +title = "Donate" +menu = "main" + +description = """ +How to donate to me +""" ++++ + +## Cryptocurrency Links + +Nano: `nano_1ewtme68x5gia1bjq3jx1ku5pcxzayipdxjmjrc3x8qjjpat4ria8ajhjoxd` + +Bitcoin: `bc1qj6h8z2tg9nxcl9ddnv9k798cru6asr6cpmj84m` + +Ethereum: `0x80DaED7e2BEF5d894b37fBd79d0609aa17c8Cabc` + +Monero: `45gGauNcWLNSobRMzk3rtfEpad7gGcEvegxCbEm6QYENdG4vag3fCVuFoKfdKSESeSEKyUNRGwAJyLaCQ6MC5AQ79DGcaRq` diff --git a/content/gpg-fingerprints.md b/content/gpg-fingerprints.md new file mode 100644 index 0000000..108ebcf --- /dev/null +++ b/content/gpg-fingerprints.md @@ -0,0 +1,17 @@ ++++ +title = "GPG Fingerprints" +menu = "main" + +description = """ +Fingerprint of my GPG key +""" ++++ + +``` +sec rsa4096 2020-08-31 [SC] + CB7CCED9209E47B9B99B8E1D18089E4E3CCF1D3A +uid [ultimate] BBaoVanC +uid [ultimate] BBaoVanC +uid [ultimate] BBaoVanC +ssb rsa4096 2020-08-31 [E] +``` diff --git a/content/links.md b/content/links.md index 5dd8300..03fc46f 100644 --- a/content/links.md +++ b/content/links.md @@ -1,9 +1,14 @@ ---- -title: "Links" -toc: true ---- ++++ +title = "Links" +menu = "main" +aliases = [ + "/blog/links/", +] ---- +description = """ +Various links to my stuff +""" ++++ ## Other diff --git a/content/referral-codes.md b/content/referral-codes.md new file mode 100644 index 0000000..f7f6dc3 --- /dev/null +++ b/content/referral-codes.md @@ -0,0 +1,15 @@ ++++ +title = "Referral Codes" +menu = "main" +aliases = [ + "/referrals/", +] + +description = """ +Referral codes for various services that I use/have used +""" ++++ + +- [Vultr](https://www.vultr.com/?ref=8643438-6G) + - You get $100 to try out the service for a month + - I get $25 if you stay. diff --git a/layouts/_default/single.html b/layouts/_default/single.html new file mode 100644 index 0000000..cbd8653 --- /dev/null +++ b/layouts/_default/single.html @@ -0,0 +1,20 @@ +{{ define "main" }} +

{{ .Title }}

+{{ if eq .Type "blog" }}{{ if not .Params.menu }} +

+ + + +

+{{ end }}{{ end }} + + {{ .Content }} + +

+ {{ range (.GetTerms "tags") }} + #{{ .LinkTitle }} + {{ end }} +

+{{ end }} diff --git a/layouts/partials/comments.html b/layouts/partials/comments.html deleted file mode 100644 index e02a2b0..0000000 --- a/layouts/partials/comments.html +++ /dev/null @@ -1,15 +0,0 @@ -{{ $css := resources.Get "css/comments.css" }} -{{ $style := $css | resources.Minify }} - - -
- - diff --git a/static/img/favicon.png b/static/img/favicon.png new file mode 100644 index 0000000000000000000000000000000000000000..c0a80408d502aef93f08dfd5510f2c8cd0e0c36c GIT binary patch literal 6670 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 G5`F==5u#TB literal 0 HcmV?d00001 diff --git a/themes/hugo-bearblog b/themes/hugo-bearblog new file mode 160000 index 0000000..4304479 --- /dev/null +++ b/themes/hugo-bearblog @@ -0,0 +1 @@ +Subproject commit 4304479210ebeefeb68e618d5b391f39179b60b6 diff --git a/themes/terminal b/themes/terminal deleted file mode 160000 index aaaadaf..0000000 --- a/themes/terminal +++ /dev/null @@ -1 +0,0 @@ -Subproject commit aaaadafec9b6a754cb014e0436d5565d2c3c0fea