commit 4586010603ebb4b2f2c349a90727a619edb6dce6 Author: Kentai Radiquum Date: Wed Mar 6 01:42:47 2024 +0500 Initial Commit diff --git a/.github/workflows/hugo.yaml b/.github/workflows/hugo.yaml new file mode 100644 index 0000000..b965fd0 --- /dev/null +++ b/.github/workflows/hugo.yaml @@ -0,0 +1,78 @@ +# Sample workflow for building and deploying a Hugo site to GitHub Pages +name: Deploy Hugo site to Pages + +on: + # Runs on pushes targeting the default branch + push: + branches: + - main + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +permissions: + contents: read + pages: write + id-token: write + +# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. +# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. +concurrency: + group: "pages" + cancel-in-progress: false + +# Default to bash +defaults: + run: + shell: bash + +jobs: + # Build job + build: + runs-on: ubuntu-latest + env: + HUGO_VERSION: 0.123.7 + steps: + - name: Install Hugo CLI + run: | + wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb \ + && sudo dpkg -i ${{ runner.temp }}/hugo.deb + - name: Install Dart Sass + run: sudo snap install dart-sass + - name: Checkout + uses: actions/checkout@v4 + with: + submodules: recursive + fetch-depth: 0 + - name: Setup Pages + id: pages + uses: actions/configure-pages@v4 + - name: Install Node.js dependencies + run: "[[ -f package-lock.json || -f npm-shrinkwrap.json ]] && npm ci || true" + - name: Build with Hugo + env: + # For maximum backward compatibility with Hugo modules + HUGO_ENVIRONMENT: production + HUGO_ENV: production + run: | + hugo \ + --gc \ + --minify \ + --baseURL "${{ steps.pages.outputs.base_url }}/" + - name: Upload artifact + uses: actions/upload-pages-artifact@v2 + with: + path: ./public + + # Deployment job + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + needs: build + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v3 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3525e83 --- /dev/null +++ b/.gitignore @@ -0,0 +1,31 @@ +# Compiled Object files, Static and Dynamic libs (Shared Objects) +*.o +*.a +*.so + +# Folders +_obj +_test + +# Architecture specific extensions/prefixes +*.[568vq] +[568vq].out + +*.cgo1.go +*.cgo2.c +_cgo_defun.c +_cgo_gotypes.go +_cgo_export.* + +_testmain.go + +*.exe +*.test + +public +themes +resources + +assets/jsconfig.json +.DS_Store +.hugo_build.lock \ No newline at end of file diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..6814fcc --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/stack"] + path = themes/stack + url = https://github.com/CaiJimmy/hugo-theme-stack diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..c6f3fce --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,5 @@ ++++ +title = '{{ replace .File.ContentBaseName "-" " " | title }}' +date = {{ .Date }} +draft = true ++++ diff --git a/assets/icons/brand-bento.svg b/assets/icons/brand-bento.svg new file mode 100644 index 0000000..30dab3e --- /dev/null +++ b/assets/icons/brand-bento.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/assets/icons/brand-bluesky.svg b/assets/icons/brand-bluesky.svg new file mode 100644 index 0000000..c0ea839 --- /dev/null +++ b/assets/icons/brand-bluesky.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/brand-github.svg b/assets/icons/brand-github.svg new file mode 100644 index 0000000..fb7f50b --- /dev/null +++ b/assets/icons/brand-github.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/brand-mastodon.svg b/assets/icons/brand-mastodon.svg new file mode 100644 index 0000000..d0e8a2c --- /dev/null +++ b/assets/icons/brand-mastodon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/img/avatar.png b/assets/img/avatar.png new file mode 100644 index 0000000..f5f6e58 Binary files /dev/null and b/assets/img/avatar.png differ diff --git a/config.yml b/config.yml new file mode 100644 index 0000000..287c976 --- /dev/null +++ b/config.yml @@ -0,0 +1,72 @@ +baseURL: "https://radiquum.wah.su" +languageCode: "en-us" +title: "Radiquum Blog" +theme: "stack" +DefaultContentLanguage: "en" +hasCJKLanguage: false + +menu: + social: + - identifier: github + name: GitHub + url: https://github.com/radiquum + weight: -200 + params: + icon: brand-github + newTab: true + - identifier: bluesky + name: BlueSky + url: https://bsky.app/profile/radiquum.wah.su + weight: -200 + params: + icon: brand-bluesky + newTab: true + - identifier: mastodon + name: Mastodon + url: https://furry.engineer/@radiquum + weight: -200 + params: + icon: brand-mastodon + newTab: true + - identifier: bento + name: bento + url: https://bento.me/radiquum + weight: -200 + params: + icon: brand-bento + newTab: true + +permalinks: + post: /p/:slug/ + page: /:slug/ + +params: + favicon: /favicon.ico + mainSections: + - post + featuredImageField: image + rssFullContent: true + sidebar: + emoji: 🍎 + subtitle: Furry, Photographer, Coder and Self-Hosting Enthusiast. + article: + math: false + toc: true + readingTime: true + license: + enabled: true + default: Licensed under CC BY-NC-SA 4.0 + widgets: + homepage: + - type: search + - type: archives + params: + limit: 5 + - type: categories + params: + limit: 10 + - type: tag-cloud + params: + limit: 10 + page: + - type: toc diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..530dfe8 --- /dev/null +++ b/content/_index.md @@ -0,0 +1,8 @@ +--- +menu: + main: + name: Home + weight: -100 + params: + icon: home +--- \ No newline at end of file diff --git a/content/page/archives/index.md b/content/page/archives/index.md new file mode 100644 index 0000000..2862deb --- /dev/null +++ b/content/page/archives/index.md @@ -0,0 +1,11 @@ +--- +title: "Archives" +date: 2019-05-28 +layout: "archives" +slug: "archives" +menu: + main: + weight: -70 + params: + icon: archives +--- diff --git a/content/page/search/index.md b/content/page/search/index.md new file mode 100644 index 0000000..b2a5943 --- /dev/null +++ b/content/page/search/index.md @@ -0,0 +1,13 @@ +--- +title: "Search" +slug: "search" +layout: "search" +outputs: + - html + - json +menu: + main: + weight: -60 + params: + icon: search +--- \ No newline at end of file diff --git a/content/post/welcome.md b/content/post/welcome.md new file mode 100644 index 0000000..bd5990e --- /dev/null +++ b/content/post/welcome.md @@ -0,0 +1,38 @@ ++++ +title = 'Welcome' +date = 2024-03-06T00:14:00+05:00 +draft = false +tags = [ "personal", ] ++++ +> so, I decided to create a blog. + +## What will this blog be about? + +Probably a tech stuff, like how to do something with Docker, Problem troubleshooting journeys or what I like about some self-hosted apps. + +## Who are you? + +I'm a Furry, Photographer, Coder and Self-Hosting Enthusiast. + +I Like to do stuff, but most of it are kinda stupid. + +As of now, I know NextJS (but kinda on base level), Python (and python frameworks like: Flask, Django and FastAPI), how to work with docker on linux server, some knowledge about DNS and reverse-proxies. + +## Where to follow? + +For twitter like experience: + +- [furry.engineer | mastodon](https://furry.engineer/@Radiquum) +- [bluesky](https://bsky.app/profile/radiquum.wah.su) +- [twitter](https://twitter.com/radiquum) + +For my photography: + +- [pixey.org | pixelfed](https://pixey.org/Radiquum) - Photography of landscapes, archetecture and cities. +- [instafops.net | pixelfed](https://instafops.net/radiquwum) - Personal photo account and miscelenious stuff. + +Developer accounts: + +- [github](https://github.com/radiquum) + +Other accounts are available at my [bento](https://bento.me/radiquum) diff --git a/static/favicon.ico b/static/favicon.ico new file mode 100644 index 0000000..b1d4c1b Binary files /dev/null and b/static/favicon.ico differ