diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml new file mode 100644 index 0000000..bdcf211 --- /dev/null +++ b/.gitea/workflows/deploy.yaml @@ -0,0 +1,30 @@ +name: Hugo + +on: [push] + +jobs: + build: + + runs-on: ubuntu-22.04 + + steps: + - uses: actions/checkout@v3 + - name: Grab packages + run: | + apt-get update && \ + apt-get install -y jq rsync tar wget && \ + wget https://github.com/gohugoio/hugo/releases/download/v0.123.4/hugo_extended_0.123.4_linux-amd64.tar.gz && \ + tar -xzvf hugo_extended_0.123.4_linux-amd64.tar.gz && \ + chmod +x hugo + - name: Run build task + run: ./hugo --minify --logLevel info + - name: Deploy to Server + # run: rsync -avz --delete public/ ${{ vars.REMOTE_USER }}@${{ vars.REMOTE_HOST }}:${{ vars.REMOTE_TARGET }} + uses: easingthemes/ssh-deploy@main + env: + SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }} + ARGS: "-rlgoDzvc -i --delete" + SOURCE: "public/" + REMOTE_HOST: ${{ secrets.REMOTE_HOST }} + REMOTE_USER: ${{ secrets.REMOTE_USER }} + TARGET: ${{ secrets.REMOTE_TARGET }} 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/.vscode/ltex.dictionary.en-US.txt b/.vscode/ltex.dictionary.en-US.txt deleted file mode 100644 index 12cb3b1..0000000 --- a/.vscode/ltex.dictionary.en-US.txt +++ /dev/null @@ -1 +0,0 @@ -Decap diff --git a/web-myco/archetypes/default.md b/archetypes/default.md similarity index 100% rename from web-myco/archetypes/default.md rename to archetypes/default.md diff --git a/web-myco/assets/img/android-chrome-512x512.png b/assets/img/android-chrome-512x512.png similarity index 100% rename from web-myco/assets/img/android-chrome-512x512.png rename to assets/img/android-chrome-512x512.png diff --git a/web-myco/assets/img/favicon.ico b/assets/img/favicon.ico similarity index 100% rename from web-myco/assets/img/favicon.ico rename to assets/img/favicon.ico diff --git a/web-myco/assets/img/mushroom-1.png b/assets/img/mushroom-1.png similarity index 100% rename from web-myco/assets/img/mushroom-1.png rename to assets/img/mushroom-1.png diff --git a/web-myco/assets/img/mushroom-2.png b/assets/img/mushroom-2.png similarity index 100% rename from web-myco/assets/img/mushroom-2.png rename to assets/img/mushroom-2.png diff --git a/web-myco/assets/js/home.js b/assets/js/home.js similarity index 100% rename from web-myco/assets/js/home.js rename to assets/js/home.js diff --git a/web-myco/config/_default/config.toml b/config/_default/config.toml similarity index 100% rename from web-myco/config/_default/config.toml rename to config/_default/config.toml diff --git a/web-myco/config/_default/languages.en.toml b/config/_default/languages.en.toml similarity index 100% rename from web-myco/config/_default/languages.en.toml rename to config/_default/languages.en.toml diff --git a/web-myco/config/_default/markup.toml b/config/_default/markup.toml similarity index 100% rename from web-myco/config/_default/markup.toml rename to config/_default/markup.toml diff --git a/web-myco/config/_default/menus.en.toml b/config/_default/menus.en.toml similarity index 100% rename from web-myco/config/_default/menus.en.toml rename to config/_default/menus.en.toml diff --git a/web-myco/config/_default/params.toml b/config/_default/params.toml similarity index 100% rename from web-myco/config/_default/params.toml rename to config/_default/params.toml diff --git a/web-myco/content/_index.md b/content/_index.md similarity index 100% rename from web-myco/content/_index.md rename to content/_index.md diff --git a/web-myco/content/services/_index.md b/content/services/_index.md similarity index 100% rename from web-myco/content/services/_index.md rename to content/services/_index.md diff --git a/web-myco/content/services/cloud-deploy/index.md b/content/services/cloud-deploy/index.md similarity index 100% rename from web-myco/content/services/cloud-deploy/index.md rename to content/services/cloud-deploy/index.md diff --git a/web-myco/content/services/device-anon/index.md b/content/services/device-anon/index.md similarity index 100% rename from web-myco/content/services/device-anon/index.md rename to content/services/device-anon/index.md diff --git a/web-myco/content/services/hardware-deploy/index.md b/content/services/hardware-deploy/index.md similarity index 100% rename from web-myco/content/services/hardware-deploy/index.md rename to content/services/hardware-deploy/index.md diff --git a/web-myco/content/services/privacy/index.md b/content/services/privacy/index.md similarity index 100% rename from web-myco/content/services/privacy/index.md rename to content/services/privacy/index.md diff --git a/web-myco/content/services/web-dev-design/index.md b/content/services/web-dev-design/index.md similarity index 100% rename from web-myco/content/services/web-dev-design/index.md rename to content/services/web-dev-design/index.md diff --git a/web-myco/content/services/web-hosting/index.md b/content/services/web-hosting/index.md similarity index 100% rename from web-myco/content/services/web-hosting/index.md rename to content/services/web-hosting/index.md diff --git a/web-myco/content/showcase/_index.md b/content/showcase/_index.md similarity index 100% rename from web-myco/content/showcase/_index.md rename to content/showcase/_index.md diff --git a/web-myco/content/stacks/_index.md b/content/stacks/_index.md similarity index 100% rename from web-myco/content/stacks/_index.md rename to content/stacks/_index.md diff --git a/web-myco/layouts/partials/head.html b/layouts/partials/head.html similarity index 100% rename from web-myco/layouts/partials/head.html rename to layouts/partials/head.html diff --git a/web-myco/layouts/partials/home/background.html b/layouts/partials/home/background.html similarity index 100% rename from web-myco/layouts/partials/home/background.html rename to layouts/partials/home/background.html diff --git a/web-myco/layouts/partials/home/custom.html b/layouts/partials/home/custom.html similarity index 100% rename from web-myco/layouts/partials/home/custom.html rename to layouts/partials/home/custom.html diff --git a/web-myco/layouts/partials/recent-articles/main.html b/layouts/partials/recent-articles/main.html similarity index 100% rename from web-myco/layouts/partials/recent-articles/main.html rename to layouts/partials/recent-articles/main.html diff --git a/web-myco/static/favicon-16x16.png b/static/favicon-16x16.png similarity index 100% rename from web-myco/static/favicon-16x16.png rename to static/favicon-16x16.png diff --git a/web-myco/static/favicon-32x32.png b/static/favicon-32x32.png similarity index 100% rename from web-myco/static/favicon-32x32.png rename to static/favicon-32x32.png diff --git a/web-myco/static/favicon.ico b/static/favicon.ico similarity index 100% rename from web-myco/static/favicon.ico rename to static/favicon.ico diff --git a/web-myco/themes/blowfish/archetypes/default.md b/themes/blowfish/archetypes/default.md similarity index 100% rename from web-myco/themes/blowfish/archetypes/default.md rename to themes/blowfish/archetypes/default.md diff --git a/web-myco/themes/blowfish/archetypes/external.md b/themes/blowfish/archetypes/external.md similarity index 100% rename from web-myco/themes/blowfish/archetypes/external.md rename to themes/blowfish/archetypes/external.md diff --git a/web-myco/themes/blowfish/assets/css/compiled/main.css b/themes/blowfish/assets/css/compiled/main.css similarity index 100% rename from web-myco/themes/blowfish/assets/css/compiled/main.css rename to themes/blowfish/assets/css/compiled/main.css diff --git a/web-myco/themes/blowfish/assets/css/main.css b/themes/blowfish/assets/css/main.css similarity index 100% rename from web-myco/themes/blowfish/assets/css/main.css rename to themes/blowfish/assets/css/main.css diff --git a/web-myco/themes/blowfish/assets/css/schemes/autumn.css b/themes/blowfish/assets/css/schemes/autumn.css similarity index 100% rename from web-myco/themes/blowfish/assets/css/schemes/autumn.css rename to themes/blowfish/assets/css/schemes/autumn.css diff --git a/web-myco/themes/blowfish/assets/css/schemes/avocado.css b/themes/blowfish/assets/css/schemes/avocado.css similarity index 100% rename from web-myco/themes/blowfish/assets/css/schemes/avocado.css rename to themes/blowfish/assets/css/schemes/avocado.css diff --git a/web-myco/themes/blowfish/assets/css/schemes/bloody.css b/themes/blowfish/assets/css/schemes/bloody.css similarity index 100% rename from web-myco/themes/blowfish/assets/css/schemes/bloody.css rename to themes/blowfish/assets/css/schemes/bloody.css diff --git a/web-myco/themes/blowfish/assets/css/schemes/blowfish.css b/themes/blowfish/assets/css/schemes/blowfish.css similarity index 100% rename from web-myco/themes/blowfish/assets/css/schemes/blowfish.css rename to themes/blowfish/assets/css/schemes/blowfish.css diff --git a/web-myco/themes/blowfish/assets/css/schemes/congo.css b/themes/blowfish/assets/css/schemes/congo.css similarity index 100% rename from web-myco/themes/blowfish/assets/css/schemes/congo.css rename to themes/blowfish/assets/css/schemes/congo.css diff --git a/web-myco/themes/blowfish/assets/css/schemes/fire.css b/themes/blowfish/assets/css/schemes/fire.css similarity index 100% rename from web-myco/themes/blowfish/assets/css/schemes/fire.css rename to themes/blowfish/assets/css/schemes/fire.css diff --git a/web-myco/themes/blowfish/assets/css/schemes/forest.css b/themes/blowfish/assets/css/schemes/forest.css similarity index 100% rename from web-myco/themes/blowfish/assets/css/schemes/forest.css rename to themes/blowfish/assets/css/schemes/forest.css diff --git a/web-myco/themes/blowfish/assets/css/schemes/marvel.css b/themes/blowfish/assets/css/schemes/marvel.css similarity index 100% rename from web-myco/themes/blowfish/assets/css/schemes/marvel.css rename to themes/blowfish/assets/css/schemes/marvel.css diff --git a/web-myco/themes/blowfish/assets/css/schemes/neon.css b/themes/blowfish/assets/css/schemes/neon.css similarity index 100% rename from web-myco/themes/blowfish/assets/css/schemes/neon.css rename to themes/blowfish/assets/css/schemes/neon.css diff --git a/web-myco/themes/blowfish/assets/css/schemes/noir.css b/themes/blowfish/assets/css/schemes/noir.css similarity index 100% rename from web-myco/themes/blowfish/assets/css/schemes/noir.css rename to themes/blowfish/assets/css/schemes/noir.css diff --git a/web-myco/themes/blowfish/assets/css/schemes/ocean.css b/themes/blowfish/assets/css/schemes/ocean.css similarity index 100% rename from web-myco/themes/blowfish/assets/css/schemes/ocean.css rename to themes/blowfish/assets/css/schemes/ocean.css diff --git a/web-myco/themes/blowfish/assets/css/schemes/princess.css b/themes/blowfish/assets/css/schemes/princess.css similarity index 100% rename from web-myco/themes/blowfish/assets/css/schemes/princess.css rename to themes/blowfish/assets/css/schemes/princess.css diff --git a/web-myco/themes/blowfish/assets/css/schemes/slate.css b/themes/blowfish/assets/css/schemes/slate.css similarity index 100% rename from web-myco/themes/blowfish/assets/css/schemes/slate.css rename to themes/blowfish/assets/css/schemes/slate.css diff --git a/web-myco/themes/blowfish/assets/css/schemes/terminal.css b/themes/blowfish/assets/css/schemes/terminal.css similarity index 100% rename from web-myco/themes/blowfish/assets/css/schemes/terminal.css rename to themes/blowfish/assets/css/schemes/terminal.css diff --git a/web-myco/themes/blowfish/assets/icons/amazon.svg b/themes/blowfish/assets/icons/amazon.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/amazon.svg rename to themes/blowfish/assets/icons/amazon.svg diff --git a/web-myco/themes/blowfish/assets/icons/apple.svg b/themes/blowfish/assets/icons/apple.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/apple.svg rename to themes/blowfish/assets/icons/apple.svg diff --git a/web-myco/themes/blowfish/assets/icons/bars.svg b/themes/blowfish/assets/icons/bars.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/bars.svg rename to themes/blowfish/assets/icons/bars.svg diff --git a/web-myco/themes/blowfish/assets/icons/bell.svg b/themes/blowfish/assets/icons/bell.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/bell.svg rename to themes/blowfish/assets/icons/bell.svg diff --git a/web-myco/themes/blowfish/assets/icons/blogger.svg b/themes/blowfish/assets/icons/blogger.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/blogger.svg rename to themes/blowfish/assets/icons/blogger.svg diff --git a/web-myco/themes/blowfish/assets/icons/bomb.svg b/themes/blowfish/assets/icons/bomb.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/bomb.svg rename to themes/blowfish/assets/icons/bomb.svg diff --git a/web-myco/themes/blowfish/assets/icons/bug.svg b/themes/blowfish/assets/icons/bug.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/bug.svg rename to themes/blowfish/assets/icons/bug.svg diff --git a/web-myco/themes/blowfish/assets/icons/check.svg b/themes/blowfish/assets/icons/check.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/check.svg rename to themes/blowfish/assets/icons/check.svg diff --git a/web-myco/themes/blowfish/assets/icons/chevron-down.svg b/themes/blowfish/assets/icons/chevron-down.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/chevron-down.svg rename to themes/blowfish/assets/icons/chevron-down.svg diff --git a/web-myco/themes/blowfish/assets/icons/circle-info.svg b/themes/blowfish/assets/icons/circle-info.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/circle-info.svg rename to themes/blowfish/assets/icons/circle-info.svg diff --git a/web-myco/themes/blowfish/assets/icons/code.svg b/themes/blowfish/assets/icons/code.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/code.svg rename to themes/blowfish/assets/icons/code.svg diff --git a/web-myco/themes/blowfish/assets/icons/codepen.svg b/themes/blowfish/assets/icons/codepen.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/codepen.svg rename to themes/blowfish/assets/icons/codepen.svg diff --git a/web-myco/themes/blowfish/assets/icons/comment.svg b/themes/blowfish/assets/icons/comment.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/comment.svg rename to themes/blowfish/assets/icons/comment.svg diff --git a/web-myco/themes/blowfish/assets/icons/dev.svg b/themes/blowfish/assets/icons/dev.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/dev.svg rename to themes/blowfish/assets/icons/dev.svg diff --git a/web-myco/themes/blowfish/assets/icons/discord.svg b/themes/blowfish/assets/icons/discord.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/discord.svg rename to themes/blowfish/assets/icons/discord.svg diff --git a/web-myco/themes/blowfish/assets/icons/discourse.svg b/themes/blowfish/assets/icons/discourse.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/discourse.svg rename to themes/blowfish/assets/icons/discourse.svg diff --git a/web-myco/themes/blowfish/assets/icons/docker.svg b/themes/blowfish/assets/icons/docker.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/docker.svg rename to themes/blowfish/assets/icons/docker.svg diff --git a/web-myco/themes/blowfish/assets/icons/download.svg b/themes/blowfish/assets/icons/download.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/download.svg rename to themes/blowfish/assets/icons/download.svg diff --git a/web-myco/themes/blowfish/assets/icons/dribbble.svg b/themes/blowfish/assets/icons/dribbble.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/dribbble.svg rename to themes/blowfish/assets/icons/dribbble.svg diff --git a/web-myco/themes/blowfish/assets/icons/edit.svg b/themes/blowfish/assets/icons/edit.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/edit.svg rename to themes/blowfish/assets/icons/edit.svg diff --git a/web-myco/themes/blowfish/assets/icons/email.svg b/themes/blowfish/assets/icons/email.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/email.svg rename to themes/blowfish/assets/icons/email.svg diff --git a/web-myco/themes/blowfish/assets/icons/envelope.svg b/themes/blowfish/assets/icons/envelope.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/envelope.svg rename to themes/blowfish/assets/icons/envelope.svg diff --git a/web-myco/themes/blowfish/assets/icons/eye.svg b/themes/blowfish/assets/icons/eye.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/eye.svg rename to themes/blowfish/assets/icons/eye.svg diff --git a/web-myco/themes/blowfish/assets/icons/facebook.svg b/themes/blowfish/assets/icons/facebook.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/facebook.svg rename to themes/blowfish/assets/icons/facebook.svg diff --git a/web-myco/themes/blowfish/assets/icons/fire.svg b/themes/blowfish/assets/icons/fire.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/fire.svg rename to themes/blowfish/assets/icons/fire.svg diff --git a/web-myco/themes/blowfish/assets/icons/flickr.svg b/themes/blowfish/assets/icons/flickr.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/flickr.svg rename to themes/blowfish/assets/icons/flickr.svg diff --git a/web-myco/themes/blowfish/assets/icons/fork.svg b/themes/blowfish/assets/icons/fork.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/fork.svg rename to themes/blowfish/assets/icons/fork.svg diff --git a/web-myco/themes/blowfish/assets/icons/foursquare.svg b/themes/blowfish/assets/icons/foursquare.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/foursquare.svg rename to themes/blowfish/assets/icons/foursquare.svg diff --git a/web-myco/themes/blowfish/assets/icons/ghost.svg b/themes/blowfish/assets/icons/ghost.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/ghost.svg rename to themes/blowfish/assets/icons/ghost.svg diff --git a/web-myco/themes/blowfish/assets/icons/github.svg b/themes/blowfish/assets/icons/github.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/github.svg rename to themes/blowfish/assets/icons/github.svg diff --git a/web-myco/themes/blowfish/assets/icons/gitlab.svg b/themes/blowfish/assets/icons/gitlab.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/gitlab.svg rename to themes/blowfish/assets/icons/gitlab.svg diff --git a/web-myco/themes/blowfish/assets/icons/globe.svg b/themes/blowfish/assets/icons/globe.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/globe.svg rename to themes/blowfish/assets/icons/globe.svg diff --git a/web-myco/themes/blowfish/assets/icons/goodreads.svg b/themes/blowfish/assets/icons/goodreads.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/goodreads.svg rename to themes/blowfish/assets/icons/goodreads.svg diff --git a/web-myco/themes/blowfish/assets/icons/google.svg b/themes/blowfish/assets/icons/google.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/google.svg rename to themes/blowfish/assets/icons/google.svg diff --git a/web-myco/themes/blowfish/assets/icons/graduation-cap.svg b/themes/blowfish/assets/icons/graduation-cap.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/graduation-cap.svg rename to themes/blowfish/assets/icons/graduation-cap.svg diff --git a/web-myco/themes/blowfish/assets/icons/hackernews.svg b/themes/blowfish/assets/icons/hackernews.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/hackernews.svg rename to themes/blowfish/assets/icons/hackernews.svg diff --git a/web-myco/themes/blowfish/assets/icons/hashnode.svg b/themes/blowfish/assets/icons/hashnode.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/hashnode.svg rename to themes/blowfish/assets/icons/hashnode.svg diff --git a/web-myco/themes/blowfish/assets/icons/heart-empty.svg b/themes/blowfish/assets/icons/heart-empty.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/heart-empty.svg rename to themes/blowfish/assets/icons/heart-empty.svg diff --git a/web-myco/themes/blowfish/assets/icons/heart.svg b/themes/blowfish/assets/icons/heart.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/heart.svg rename to themes/blowfish/assets/icons/heart.svg diff --git a/web-myco/themes/blowfish/assets/icons/image.svg b/themes/blowfish/assets/icons/image.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/image.svg rename to themes/blowfish/assets/icons/image.svg diff --git a/web-myco/themes/blowfish/assets/icons/instagram.svg b/themes/blowfish/assets/icons/instagram.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/instagram.svg rename to themes/blowfish/assets/icons/instagram.svg diff --git a/web-myco/themes/blowfish/assets/icons/keybase.svg b/themes/blowfish/assets/icons/keybase.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/keybase.svg rename to themes/blowfish/assets/icons/keybase.svg diff --git a/web-myco/themes/blowfish/assets/icons/kickstarter.svg b/themes/blowfish/assets/icons/kickstarter.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/kickstarter.svg rename to themes/blowfish/assets/icons/kickstarter.svg diff --git a/web-myco/themes/blowfish/assets/icons/ko-fi.svg b/themes/blowfish/assets/icons/ko-fi.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/ko-fi.svg rename to themes/blowfish/assets/icons/ko-fi.svg diff --git a/web-myco/themes/blowfish/assets/icons/lastfm.svg b/themes/blowfish/assets/icons/lastfm.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/lastfm.svg rename to themes/blowfish/assets/icons/lastfm.svg diff --git a/web-myco/themes/blowfish/assets/icons/lightbulb.svg b/themes/blowfish/assets/icons/lightbulb.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/lightbulb.svg rename to themes/blowfish/assets/icons/lightbulb.svg diff --git a/web-myco/themes/blowfish/assets/icons/link.svg b/themes/blowfish/assets/icons/link.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/link.svg rename to themes/blowfish/assets/icons/link.svg diff --git a/web-myco/themes/blowfish/assets/icons/linkedin.svg b/themes/blowfish/assets/icons/linkedin.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/linkedin.svg rename to themes/blowfish/assets/icons/linkedin.svg diff --git a/web-myco/themes/blowfish/assets/icons/list.svg b/themes/blowfish/assets/icons/list.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/list.svg rename to themes/blowfish/assets/icons/list.svg diff --git a/web-myco/themes/blowfish/assets/icons/location-dot.svg b/themes/blowfish/assets/icons/location-dot.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/location-dot.svg rename to themes/blowfish/assets/icons/location-dot.svg diff --git a/web-myco/themes/blowfish/assets/icons/lock.svg b/themes/blowfish/assets/icons/lock.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/lock.svg rename to themes/blowfish/assets/icons/lock.svg diff --git a/web-myco/themes/blowfish/assets/icons/mastodon.svg b/themes/blowfish/assets/icons/mastodon.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/mastodon.svg rename to themes/blowfish/assets/icons/mastodon.svg diff --git a/web-myco/themes/blowfish/assets/icons/medium.svg b/themes/blowfish/assets/icons/medium.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/medium.svg rename to themes/blowfish/assets/icons/medium.svg diff --git a/web-myco/themes/blowfish/assets/icons/microsoft.svg b/themes/blowfish/assets/icons/microsoft.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/microsoft.svg rename to themes/blowfish/assets/icons/microsoft.svg diff --git a/web-myco/themes/blowfish/assets/icons/moon.svg b/themes/blowfish/assets/icons/moon.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/moon.svg rename to themes/blowfish/assets/icons/moon.svg diff --git a/web-myco/themes/blowfish/assets/icons/mug-hot.svg b/themes/blowfish/assets/icons/mug-hot.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/mug-hot.svg rename to themes/blowfish/assets/icons/mug-hot.svg diff --git a/web-myco/themes/blowfish/assets/icons/music.svg b/themes/blowfish/assets/icons/music.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/music.svg rename to themes/blowfish/assets/icons/music.svg diff --git a/web-myco/themes/blowfish/assets/icons/orcid.svg b/themes/blowfish/assets/icons/orcid.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/orcid.svg rename to themes/blowfish/assets/icons/orcid.svg diff --git a/web-myco/themes/blowfish/assets/icons/patreon.svg b/themes/blowfish/assets/icons/patreon.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/patreon.svg rename to themes/blowfish/assets/icons/patreon.svg diff --git a/web-myco/themes/blowfish/assets/icons/paypal.svg b/themes/blowfish/assets/icons/paypal.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/paypal.svg rename to themes/blowfish/assets/icons/paypal.svg diff --git a/web-myco/themes/blowfish/assets/icons/pencil.svg b/themes/blowfish/assets/icons/pencil.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/pencil.svg rename to themes/blowfish/assets/icons/pencil.svg diff --git a/web-myco/themes/blowfish/assets/icons/pgpkey.svg b/themes/blowfish/assets/icons/pgpkey.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/pgpkey.svg rename to themes/blowfish/assets/icons/pgpkey.svg diff --git a/web-myco/themes/blowfish/assets/icons/phone.svg b/themes/blowfish/assets/icons/phone.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/phone.svg rename to themes/blowfish/assets/icons/phone.svg diff --git a/web-myco/themes/blowfish/assets/icons/pinterest.svg b/themes/blowfish/assets/icons/pinterest.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/pinterest.svg rename to themes/blowfish/assets/icons/pinterest.svg diff --git a/web-myco/themes/blowfish/assets/icons/poo.svg b/themes/blowfish/assets/icons/poo.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/poo.svg rename to themes/blowfish/assets/icons/poo.svg diff --git a/web-myco/themes/blowfish/assets/icons/reddit.svg b/themes/blowfish/assets/icons/reddit.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/reddit.svg rename to themes/blowfish/assets/icons/reddit.svg diff --git a/web-myco/themes/blowfish/assets/icons/researchgate.svg b/themes/blowfish/assets/icons/researchgate.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/researchgate.svg rename to themes/blowfish/assets/icons/researchgate.svg diff --git a/web-myco/themes/blowfish/assets/icons/rss-square.svg b/themes/blowfish/assets/icons/rss-square.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/rss-square.svg rename to themes/blowfish/assets/icons/rss-square.svg diff --git a/web-myco/themes/blowfish/assets/icons/rss.svg b/themes/blowfish/assets/icons/rss.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/rss.svg rename to themes/blowfish/assets/icons/rss.svg diff --git a/web-myco/themes/blowfish/assets/icons/scale-balanced.svg b/themes/blowfish/assets/icons/scale-balanced.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/scale-balanced.svg rename to themes/blowfish/assets/icons/scale-balanced.svg diff --git a/web-myco/themes/blowfish/assets/icons/search.svg b/themes/blowfish/assets/icons/search.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/search.svg rename to themes/blowfish/assets/icons/search.svg diff --git a/web-myco/themes/blowfish/assets/icons/shield.svg b/themes/blowfish/assets/icons/shield.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/shield.svg rename to themes/blowfish/assets/icons/shield.svg diff --git a/web-myco/themes/blowfish/assets/icons/skull-crossbones.svg b/themes/blowfish/assets/icons/skull-crossbones.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/skull-crossbones.svg rename to themes/blowfish/assets/icons/skull-crossbones.svg diff --git a/web-myco/themes/blowfish/assets/icons/slack.svg b/themes/blowfish/assets/icons/slack.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/slack.svg rename to themes/blowfish/assets/icons/slack.svg diff --git a/web-myco/themes/blowfish/assets/icons/snapchat.svg b/themes/blowfish/assets/icons/snapchat.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/snapchat.svg rename to themes/blowfish/assets/icons/snapchat.svg diff --git a/web-myco/themes/blowfish/assets/icons/soundcloud.svg b/themes/blowfish/assets/icons/soundcloud.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/soundcloud.svg rename to themes/blowfish/assets/icons/soundcloud.svg diff --git a/web-myco/themes/blowfish/assets/icons/stack-overflow.svg b/themes/blowfish/assets/icons/stack-overflow.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/stack-overflow.svg rename to themes/blowfish/assets/icons/stack-overflow.svg diff --git a/web-myco/themes/blowfish/assets/icons/star.svg b/themes/blowfish/assets/icons/star.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/star.svg rename to themes/blowfish/assets/icons/star.svg diff --git a/web-myco/themes/blowfish/assets/icons/steam.svg b/themes/blowfish/assets/icons/steam.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/steam.svg rename to themes/blowfish/assets/icons/steam.svg diff --git a/web-myco/themes/blowfish/assets/icons/stripe.svg b/themes/blowfish/assets/icons/stripe.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/stripe.svg rename to themes/blowfish/assets/icons/stripe.svg diff --git a/web-myco/themes/blowfish/assets/icons/substack.svg b/themes/blowfish/assets/icons/substack.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/substack.svg rename to themes/blowfish/assets/icons/substack.svg diff --git a/web-myco/themes/blowfish/assets/icons/sun.svg b/themes/blowfish/assets/icons/sun.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/sun.svg rename to themes/blowfish/assets/icons/sun.svg diff --git a/web-myco/themes/blowfish/assets/icons/tag.svg b/themes/blowfish/assets/icons/tag.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/tag.svg rename to themes/blowfish/assets/icons/tag.svg diff --git a/web-myco/themes/blowfish/assets/icons/telegram.svg b/themes/blowfish/assets/icons/telegram.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/telegram.svg rename to themes/blowfish/assets/icons/telegram.svg diff --git a/web-myco/themes/blowfish/assets/icons/tiktok.svg b/themes/blowfish/assets/icons/tiktok.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/tiktok.svg rename to themes/blowfish/assets/icons/tiktok.svg diff --git a/web-myco/themes/blowfish/assets/icons/triangle-exclamation.svg b/themes/blowfish/assets/icons/triangle-exclamation.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/triangle-exclamation.svg rename to themes/blowfish/assets/icons/triangle-exclamation.svg diff --git a/web-myco/themes/blowfish/assets/icons/tumblr.svg b/themes/blowfish/assets/icons/tumblr.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/tumblr.svg rename to themes/blowfish/assets/icons/tumblr.svg diff --git a/web-myco/themes/blowfish/assets/icons/twitch.svg b/themes/blowfish/assets/icons/twitch.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/twitch.svg rename to themes/blowfish/assets/icons/twitch.svg diff --git a/web-myco/themes/blowfish/assets/icons/twitter.svg b/themes/blowfish/assets/icons/twitter.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/twitter.svg rename to themes/blowfish/assets/icons/twitter.svg diff --git a/web-myco/themes/blowfish/assets/icons/wand-magic-sparkles.svg b/themes/blowfish/assets/icons/wand-magic-sparkles.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/wand-magic-sparkles.svg rename to themes/blowfish/assets/icons/wand-magic-sparkles.svg diff --git a/web-myco/themes/blowfish/assets/icons/whatsapp.svg b/themes/blowfish/assets/icons/whatsapp.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/whatsapp.svg rename to themes/blowfish/assets/icons/whatsapp.svg diff --git a/web-myco/themes/blowfish/assets/icons/xmark.svg b/themes/blowfish/assets/icons/xmark.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/xmark.svg rename to themes/blowfish/assets/icons/xmark.svg diff --git a/web-myco/themes/blowfish/assets/icons/youtube.svg b/themes/blowfish/assets/icons/youtube.svg similarity index 100% rename from web-myco/themes/blowfish/assets/icons/youtube.svg rename to themes/blowfish/assets/icons/youtube.svg diff --git a/web-myco/themes/blowfish/assets/js/appearance.js b/themes/blowfish/assets/js/appearance.js similarity index 100% rename from web-myco/themes/blowfish/assets/js/appearance.js rename to themes/blowfish/assets/js/appearance.js diff --git a/web-myco/themes/blowfish/assets/js/chart.js b/themes/blowfish/assets/js/chart.js similarity index 100% rename from web-myco/themes/blowfish/assets/js/chart.js rename to themes/blowfish/assets/js/chart.js diff --git a/web-myco/themes/blowfish/assets/js/code.js b/themes/blowfish/assets/js/code.js similarity index 100% rename from web-myco/themes/blowfish/assets/js/code.js rename to themes/blowfish/assets/js/code.js diff --git a/web-myco/themes/blowfish/assets/js/page.js b/themes/blowfish/assets/js/page.js similarity index 100% rename from web-myco/themes/blowfish/assets/js/page.js rename to themes/blowfish/assets/js/page.js diff --git a/web-myco/themes/blowfish/assets/js/process.js b/themes/blowfish/assets/js/process.js similarity index 100% rename from web-myco/themes/blowfish/assets/js/process.js rename to themes/blowfish/assets/js/process.js diff --git a/web-myco/themes/blowfish/assets/js/rtl.js b/themes/blowfish/assets/js/rtl.js similarity index 100% rename from web-myco/themes/blowfish/assets/js/rtl.js rename to themes/blowfish/assets/js/rtl.js diff --git a/web-myco/themes/blowfish/assets/js/search.js b/themes/blowfish/assets/js/search.js similarity index 100% rename from web-myco/themes/blowfish/assets/js/search.js rename to themes/blowfish/assets/js/search.js diff --git a/web-myco/themes/blowfish/assets/lib/chart/chart.min.js b/themes/blowfish/assets/lib/chart/chart.min.js similarity index 100% rename from web-myco/themes/blowfish/assets/lib/chart/chart.min.js rename to themes/blowfish/assets/lib/chart/chart.min.js diff --git a/web-myco/themes/blowfish/assets/lib/fuse/fuse.min.js b/themes/blowfish/assets/lib/fuse/fuse.min.js similarity index 100% rename from web-myco/themes/blowfish/assets/lib/fuse/fuse.min.js rename to themes/blowfish/assets/lib/fuse/fuse.min.js diff --git a/web-myco/themes/blowfish/assets/lib/jquery/jquery.slim.min.js b/themes/blowfish/assets/lib/jquery/jquery.slim.min.js similarity index 100% rename from web-myco/themes/blowfish/assets/lib/jquery/jquery.slim.min.js rename to themes/blowfish/assets/lib/jquery/jquery.slim.min.js diff --git a/web-myco/themes/blowfish/assets/lib/katex/auto-render.min.js b/themes/blowfish/assets/lib/katex/auto-render.min.js similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/auto-render.min.js rename to themes/blowfish/assets/lib/katex/auto-render.min.js diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_AMS-Regular.ttf b/themes/blowfish/assets/lib/katex/fonts/KaTeX_AMS-Regular.ttf similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_AMS-Regular.ttf rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_AMS-Regular.ttf diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_AMS-Regular.woff b/themes/blowfish/assets/lib/katex/fonts/KaTeX_AMS-Regular.woff similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_AMS-Regular.woff rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_AMS-Regular.woff diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_AMS-Regular.woff2 b/themes/blowfish/assets/lib/katex/fonts/KaTeX_AMS-Regular.woff2 similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_AMS-Regular.woff2 rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_AMS-Regular.woff2 diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Caligraphic-Bold.ttf b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Caligraphic-Bold.ttf similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Caligraphic-Bold.ttf rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Caligraphic-Bold.ttf diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Caligraphic-Bold.woff b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Caligraphic-Bold.woff similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Caligraphic-Bold.woff rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Caligraphic-Bold.woff diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Caligraphic-Bold.woff2 b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Caligraphic-Bold.woff2 similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Caligraphic-Bold.woff2 rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Caligraphic-Bold.woff2 diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Caligraphic-Regular.ttf b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Caligraphic-Regular.ttf similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Caligraphic-Regular.ttf rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Caligraphic-Regular.ttf diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Caligraphic-Regular.woff b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Caligraphic-Regular.woff similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Caligraphic-Regular.woff rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Caligraphic-Regular.woff diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Caligraphic-Regular.woff2 b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Caligraphic-Regular.woff2 similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Caligraphic-Regular.woff2 rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Caligraphic-Regular.woff2 diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Fraktur-Bold.ttf b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Fraktur-Bold.ttf similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Fraktur-Bold.ttf rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Fraktur-Bold.ttf diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Fraktur-Bold.woff b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Fraktur-Bold.woff similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Fraktur-Bold.woff rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Fraktur-Bold.woff diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Fraktur-Bold.woff2 b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Fraktur-Bold.woff2 similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Fraktur-Bold.woff2 rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Fraktur-Bold.woff2 diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Fraktur-Regular.ttf b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Fraktur-Regular.ttf similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Fraktur-Regular.ttf rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Fraktur-Regular.ttf diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Fraktur-Regular.woff b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Fraktur-Regular.woff similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Fraktur-Regular.woff rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Fraktur-Regular.woff diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Fraktur-Regular.woff2 b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Fraktur-Regular.woff2 similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Fraktur-Regular.woff2 rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Fraktur-Regular.woff2 diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-Bold.ttf b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-Bold.ttf similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-Bold.ttf rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-Bold.ttf diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-Bold.woff b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-Bold.woff similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-Bold.woff rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-Bold.woff diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-Bold.woff2 b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-Bold.woff2 similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-Bold.woff2 rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-Bold.woff2 diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-BoldItalic.ttf b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-BoldItalic.ttf similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-BoldItalic.ttf rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-BoldItalic.ttf diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-BoldItalic.woff b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-BoldItalic.woff similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-BoldItalic.woff rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-BoldItalic.woff diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-BoldItalic.woff2 b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-BoldItalic.woff2 similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-BoldItalic.woff2 rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-BoldItalic.woff2 diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-Italic.ttf b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-Italic.ttf similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-Italic.ttf rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-Italic.ttf diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-Italic.woff b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-Italic.woff similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-Italic.woff rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-Italic.woff diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-Italic.woff2 b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-Italic.woff2 similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-Italic.woff2 rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-Italic.woff2 diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-Regular.ttf b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-Regular.ttf similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-Regular.ttf rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-Regular.ttf diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-Regular.woff b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-Regular.woff similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-Regular.woff rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-Regular.woff diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-Regular.woff2 b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-Regular.woff2 similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-Regular.woff2 rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Main-Regular.woff2 diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Math-BoldItalic.ttf b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Math-BoldItalic.ttf similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Math-BoldItalic.ttf rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Math-BoldItalic.ttf diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Math-BoldItalic.woff b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Math-BoldItalic.woff similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Math-BoldItalic.woff rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Math-BoldItalic.woff diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Math-BoldItalic.woff2 b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Math-BoldItalic.woff2 similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Math-BoldItalic.woff2 rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Math-BoldItalic.woff2 diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Math-Italic.ttf b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Math-Italic.ttf similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Math-Italic.ttf rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Math-Italic.ttf diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Math-Italic.woff b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Math-Italic.woff similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Math-Italic.woff rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Math-Italic.woff diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Math-Italic.woff2 b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Math-Italic.woff2 similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Math-Italic.woff2 rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Math-Italic.woff2 diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_SansSerif-Bold.ttf b/themes/blowfish/assets/lib/katex/fonts/KaTeX_SansSerif-Bold.ttf similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_SansSerif-Bold.ttf rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_SansSerif-Bold.ttf diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_SansSerif-Bold.woff b/themes/blowfish/assets/lib/katex/fonts/KaTeX_SansSerif-Bold.woff similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_SansSerif-Bold.woff rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_SansSerif-Bold.woff diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_SansSerif-Bold.woff2 b/themes/blowfish/assets/lib/katex/fonts/KaTeX_SansSerif-Bold.woff2 similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_SansSerif-Bold.woff2 rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_SansSerif-Bold.woff2 diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_SansSerif-Italic.ttf b/themes/blowfish/assets/lib/katex/fonts/KaTeX_SansSerif-Italic.ttf similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_SansSerif-Italic.ttf rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_SansSerif-Italic.ttf diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_SansSerif-Italic.woff b/themes/blowfish/assets/lib/katex/fonts/KaTeX_SansSerif-Italic.woff similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_SansSerif-Italic.woff rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_SansSerif-Italic.woff diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_SansSerif-Italic.woff2 b/themes/blowfish/assets/lib/katex/fonts/KaTeX_SansSerif-Italic.woff2 similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_SansSerif-Italic.woff2 rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_SansSerif-Italic.woff2 diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_SansSerif-Regular.ttf b/themes/blowfish/assets/lib/katex/fonts/KaTeX_SansSerif-Regular.ttf similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_SansSerif-Regular.ttf rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_SansSerif-Regular.ttf diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_SansSerif-Regular.woff b/themes/blowfish/assets/lib/katex/fonts/KaTeX_SansSerif-Regular.woff similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_SansSerif-Regular.woff rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_SansSerif-Regular.woff diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_SansSerif-Regular.woff2 b/themes/blowfish/assets/lib/katex/fonts/KaTeX_SansSerif-Regular.woff2 similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_SansSerif-Regular.woff2 rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_SansSerif-Regular.woff2 diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Script-Regular.ttf b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Script-Regular.ttf similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Script-Regular.ttf rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Script-Regular.ttf diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Script-Regular.woff b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Script-Regular.woff similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Script-Regular.woff rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Script-Regular.woff diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Script-Regular.woff2 b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Script-Regular.woff2 similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Script-Regular.woff2 rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Script-Regular.woff2 diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Size1-Regular.ttf b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Size1-Regular.ttf similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Size1-Regular.ttf rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Size1-Regular.ttf diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Size1-Regular.woff b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Size1-Regular.woff similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Size1-Regular.woff rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Size1-Regular.woff diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Size1-Regular.woff2 b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Size1-Regular.woff2 similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Size1-Regular.woff2 rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Size1-Regular.woff2 diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Size2-Regular.ttf b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Size2-Regular.ttf similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Size2-Regular.ttf rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Size2-Regular.ttf diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Size2-Regular.woff b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Size2-Regular.woff similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Size2-Regular.woff rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Size2-Regular.woff diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Size2-Regular.woff2 b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Size2-Regular.woff2 similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Size2-Regular.woff2 rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Size2-Regular.woff2 diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Size3-Regular.ttf b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Size3-Regular.ttf similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Size3-Regular.ttf rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Size3-Regular.ttf diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Size3-Regular.woff b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Size3-Regular.woff similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Size3-Regular.woff rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Size3-Regular.woff diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Size3-Regular.woff2 b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Size3-Regular.woff2 similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Size3-Regular.woff2 rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Size3-Regular.woff2 diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Size4-Regular.ttf b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Size4-Regular.ttf similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Size4-Regular.ttf rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Size4-Regular.ttf diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Size4-Regular.woff b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Size4-Regular.woff similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Size4-Regular.woff rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Size4-Regular.woff diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Size4-Regular.woff2 b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Size4-Regular.woff2 similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Size4-Regular.woff2 rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Size4-Regular.woff2 diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Typewriter-Regular.ttf b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Typewriter-Regular.ttf similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Typewriter-Regular.ttf rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Typewriter-Regular.ttf diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Typewriter-Regular.woff b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Typewriter-Regular.woff similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Typewriter-Regular.woff rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Typewriter-Regular.woff diff --git a/web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Typewriter-Regular.woff2 b/themes/blowfish/assets/lib/katex/fonts/KaTeX_Typewriter-Regular.woff2 similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/fonts/KaTeX_Typewriter-Regular.woff2 rename to themes/blowfish/assets/lib/katex/fonts/KaTeX_Typewriter-Regular.woff2 diff --git a/web-myco/themes/blowfish/assets/lib/katex/katex.min.css b/themes/blowfish/assets/lib/katex/katex.min.css similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/katex.min.css rename to themes/blowfish/assets/lib/katex/katex.min.css diff --git a/web-myco/themes/blowfish/assets/lib/katex/katex.min.js b/themes/blowfish/assets/lib/katex/katex.min.js similarity index 100% rename from web-myco/themes/blowfish/assets/lib/katex/katex.min.js rename to themes/blowfish/assets/lib/katex/katex.min.js diff --git a/web-myco/themes/blowfish/assets/lib/packery/packery.pkgd.min.js b/themes/blowfish/assets/lib/packery/packery.pkgd.min.js similarity index 100% rename from web-myco/themes/blowfish/assets/lib/packery/packery.pkgd.min.js rename to themes/blowfish/assets/lib/packery/packery.pkgd.min.js diff --git a/web-myco/themes/blowfish/assets/lib/tw-elements/index.min.js b/themes/blowfish/assets/lib/tw-elements/index.min.js similarity index 100% rename from web-myco/themes/blowfish/assets/lib/tw-elements/index.min.js rename to themes/blowfish/assets/lib/tw-elements/index.min.js diff --git a/web-myco/themes/blowfish/assets/lib/typeit/typeit.umd.js b/themes/blowfish/assets/lib/typeit/typeit.umd.js similarity index 100% rename from web-myco/themes/blowfish/assets/lib/typeit/typeit.umd.js rename to themes/blowfish/assets/lib/typeit/typeit.umd.js diff --git a/web-myco/themes/blowfish/data/githubColors.json b/themes/blowfish/data/githubColors.json similarity index 100% rename from web-myco/themes/blowfish/data/githubColors.json rename to themes/blowfish/data/githubColors.json diff --git a/web-myco/themes/blowfish/data/sharing.json b/themes/blowfish/data/sharing.json similarity index 100% rename from web-myco/themes/blowfish/data/sharing.json rename to themes/blowfish/data/sharing.json diff --git a/web-myco/themes/blowfish/i18n/bg.yaml b/themes/blowfish/i18n/bg.yaml similarity index 100% rename from web-myco/themes/blowfish/i18n/bg.yaml rename to themes/blowfish/i18n/bg.yaml diff --git a/web-myco/themes/blowfish/i18n/bn.yaml b/themes/blowfish/i18n/bn.yaml similarity index 100% rename from web-myco/themes/blowfish/i18n/bn.yaml rename to themes/blowfish/i18n/bn.yaml diff --git a/web-myco/themes/blowfish/i18n/cs.yaml b/themes/blowfish/i18n/cs.yaml similarity index 100% rename from web-myco/themes/blowfish/i18n/cs.yaml rename to themes/blowfish/i18n/cs.yaml diff --git a/web-myco/themes/blowfish/i18n/de.yaml b/themes/blowfish/i18n/de.yaml similarity index 100% rename from web-myco/themes/blowfish/i18n/de.yaml rename to themes/blowfish/i18n/de.yaml diff --git a/web-myco/themes/blowfish/i18n/en.yaml b/themes/blowfish/i18n/en.yaml similarity index 100% rename from web-myco/themes/blowfish/i18n/en.yaml rename to themes/blowfish/i18n/en.yaml diff --git a/web-myco/themes/blowfish/i18n/es.yaml b/themes/blowfish/i18n/es.yaml similarity index 100% rename from web-myco/themes/blowfish/i18n/es.yaml rename to themes/blowfish/i18n/es.yaml diff --git a/web-myco/themes/blowfish/i18n/fi.yaml b/themes/blowfish/i18n/fi.yaml similarity index 100% rename from web-myco/themes/blowfish/i18n/fi.yaml rename to themes/blowfish/i18n/fi.yaml diff --git a/web-myco/themes/blowfish/i18n/fr.yaml b/themes/blowfish/i18n/fr.yaml similarity index 100% rename from web-myco/themes/blowfish/i18n/fr.yaml rename to themes/blowfish/i18n/fr.yaml diff --git a/web-myco/themes/blowfish/i18n/he.yaml b/themes/blowfish/i18n/he.yaml similarity index 100% rename from web-myco/themes/blowfish/i18n/he.yaml rename to themes/blowfish/i18n/he.yaml diff --git a/web-myco/themes/blowfish/i18n/hr.yaml b/themes/blowfish/i18n/hr.yaml similarity index 100% rename from web-myco/themes/blowfish/i18n/hr.yaml rename to themes/blowfish/i18n/hr.yaml diff --git a/web-myco/themes/blowfish/i18n/hu.yaml b/themes/blowfish/i18n/hu.yaml similarity index 100% rename from web-myco/themes/blowfish/i18n/hu.yaml rename to themes/blowfish/i18n/hu.yaml diff --git a/web-myco/themes/blowfish/i18n/id.yaml b/themes/blowfish/i18n/id.yaml similarity index 100% rename from web-myco/themes/blowfish/i18n/id.yaml rename to themes/blowfish/i18n/id.yaml diff --git a/web-myco/themes/blowfish/i18n/it.yaml b/themes/blowfish/i18n/it.yaml similarity index 100% rename from web-myco/themes/blowfish/i18n/it.yaml rename to themes/blowfish/i18n/it.yaml diff --git a/web-myco/themes/blowfish/i18n/ja.yaml b/themes/blowfish/i18n/ja.yaml similarity index 100% rename from web-myco/themes/blowfish/i18n/ja.yaml rename to themes/blowfish/i18n/ja.yaml diff --git a/web-myco/themes/blowfish/i18n/ko.yaml b/themes/blowfish/i18n/ko.yaml similarity index 100% rename from web-myco/themes/blowfish/i18n/ko.yaml rename to themes/blowfish/i18n/ko.yaml diff --git a/web-myco/themes/blowfish/i18n/pl.yaml b/themes/blowfish/i18n/pl.yaml similarity index 100% rename from web-myco/themes/blowfish/i18n/pl.yaml rename to themes/blowfish/i18n/pl.yaml diff --git a/web-myco/themes/blowfish/i18n/pt-BR.yaml b/themes/blowfish/i18n/pt-BR.yaml similarity index 100% rename from web-myco/themes/blowfish/i18n/pt-BR.yaml rename to themes/blowfish/i18n/pt-BR.yaml diff --git a/web-myco/themes/blowfish/i18n/pt-PT.yaml b/themes/blowfish/i18n/pt-PT.yaml similarity index 100% rename from web-myco/themes/blowfish/i18n/pt-PT.yaml rename to themes/blowfish/i18n/pt-PT.yaml diff --git a/web-myco/themes/blowfish/i18n/ro.yaml b/themes/blowfish/i18n/ro.yaml similarity index 100% rename from web-myco/themes/blowfish/i18n/ro.yaml rename to themes/blowfish/i18n/ro.yaml diff --git a/web-myco/themes/blowfish/i18n/ru.yaml b/themes/blowfish/i18n/ru.yaml similarity index 100% rename from web-myco/themes/blowfish/i18n/ru.yaml rename to themes/blowfish/i18n/ru.yaml diff --git a/web-myco/themes/blowfish/i18n/tr.yaml b/themes/blowfish/i18n/tr.yaml similarity index 100% rename from web-myco/themes/blowfish/i18n/tr.yaml rename to themes/blowfish/i18n/tr.yaml diff --git a/web-myco/themes/blowfish/i18n/vi.yaml b/themes/blowfish/i18n/vi.yaml similarity index 100% rename from web-myco/themes/blowfish/i18n/vi.yaml rename to themes/blowfish/i18n/vi.yaml diff --git a/web-myco/themes/blowfish/i18n/zh-CN.yaml b/themes/blowfish/i18n/zh-CN.yaml similarity index 100% rename from web-myco/themes/blowfish/i18n/zh-CN.yaml rename to themes/blowfish/i18n/zh-CN.yaml diff --git a/web-myco/themes/blowfish/i18n/zh-TW.yaml b/themes/blowfish/i18n/zh-TW.yaml similarity index 100% rename from web-myco/themes/blowfish/i18n/zh-TW.yaml rename to themes/blowfish/i18n/zh-TW.yaml diff --git a/web-myco/themes/blowfish/layouts/404.html b/themes/blowfish/layouts/404.html similarity index 100% rename from web-myco/themes/blowfish/layouts/404.html rename to themes/blowfish/layouts/404.html diff --git a/web-myco/themes/blowfish/layouts/_default/_markup/render-heading.html b/themes/blowfish/layouts/_default/_markup/render-heading.html similarity index 100% rename from web-myco/themes/blowfish/layouts/_default/_markup/render-heading.html rename to themes/blowfish/layouts/_default/_markup/render-heading.html diff --git a/web-myco/themes/blowfish/layouts/_default/_markup/render-image.html b/themes/blowfish/layouts/_default/_markup/render-image.html similarity index 100% rename from web-myco/themes/blowfish/layouts/_default/_markup/render-image.html rename to themes/blowfish/layouts/_default/_markup/render-image.html diff --git a/web-myco/themes/blowfish/layouts/_default/_markup/render-link.html b/themes/blowfish/layouts/_default/_markup/render-link.html similarity index 100% rename from web-myco/themes/blowfish/layouts/_default/_markup/render-link.html rename to themes/blowfish/layouts/_default/_markup/render-link.html diff --git a/web-myco/themes/blowfish/layouts/_default/baseof.html b/themes/blowfish/layouts/_default/baseof.html similarity index 100% rename from web-myco/themes/blowfish/layouts/_default/baseof.html rename to themes/blowfish/layouts/_default/baseof.html diff --git a/web-myco/themes/blowfish/layouts/_default/index.json b/themes/blowfish/layouts/_default/index.json similarity index 100% rename from web-myco/themes/blowfish/layouts/_default/index.json rename to themes/blowfish/layouts/_default/index.json diff --git a/web-myco/themes/blowfish/layouts/_default/list.html b/themes/blowfish/layouts/_default/list.html similarity index 100% rename from web-myco/themes/blowfish/layouts/_default/list.html rename to themes/blowfish/layouts/_default/list.html diff --git a/web-myco/themes/blowfish/layouts/_default/rss.xml b/themes/blowfish/layouts/_default/rss.xml similarity index 100% rename from web-myco/themes/blowfish/layouts/_default/rss.xml rename to themes/blowfish/layouts/_default/rss.xml diff --git a/web-myco/themes/blowfish/layouts/_default/simple.html b/themes/blowfish/layouts/_default/simple.html similarity index 100% rename from web-myco/themes/blowfish/layouts/_default/simple.html rename to themes/blowfish/layouts/_default/simple.html diff --git a/web-myco/themes/blowfish/layouts/_default/single.html b/themes/blowfish/layouts/_default/single.html similarity index 100% rename from web-myco/themes/blowfish/layouts/_default/single.html rename to themes/blowfish/layouts/_default/single.html diff --git a/web-myco/themes/blowfish/layouts/_default/sitemap.xml b/themes/blowfish/layouts/_default/sitemap.xml similarity index 100% rename from web-myco/themes/blowfish/layouts/_default/sitemap.xml rename to themes/blowfish/layouts/_default/sitemap.xml diff --git a/web-myco/themes/blowfish/layouts/_default/taxonomy.html b/themes/blowfish/layouts/_default/taxonomy.html similarity index 100% rename from web-myco/themes/blowfish/layouts/_default/taxonomy.html rename to themes/blowfish/layouts/_default/taxonomy.html diff --git a/web-myco/themes/blowfish/layouts/_default/term.html b/themes/blowfish/layouts/_default/term.html similarity index 100% rename from web-myco/themes/blowfish/layouts/_default/term.html rename to themes/blowfish/layouts/_default/term.html diff --git a/web-myco/themes/blowfish/layouts/index.html b/themes/blowfish/layouts/index.html similarity index 100% rename from web-myco/themes/blowfish/layouts/index.html rename to themes/blowfish/layouts/index.html diff --git a/web-myco/themes/blowfish/layouts/partials/analytics/fathom.html b/themes/blowfish/layouts/partials/analytics/fathom.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/analytics/fathom.html rename to themes/blowfish/layouts/partials/analytics/fathom.html diff --git a/web-myco/themes/blowfish/layouts/partials/analytics/ga.html b/themes/blowfish/layouts/partials/analytics/ga.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/analytics/ga.html rename to themes/blowfish/layouts/partials/analytics/ga.html diff --git a/web-myco/themes/blowfish/layouts/partials/analytics/main.html b/themes/blowfish/layouts/partials/analytics/main.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/analytics/main.html rename to themes/blowfish/layouts/partials/analytics/main.html diff --git a/web-myco/themes/blowfish/layouts/partials/article-link/card-related.html b/themes/blowfish/layouts/partials/article-link/card-related.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/article-link/card-related.html rename to themes/blowfish/layouts/partials/article-link/card-related.html diff --git a/web-myco/themes/blowfish/layouts/partials/article-link/card.html b/themes/blowfish/layouts/partials/article-link/card.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/article-link/card.html rename to themes/blowfish/layouts/partials/article-link/card.html diff --git a/web-myco/themes/blowfish/layouts/partials/article-link/simple.html b/themes/blowfish/layouts/partials/article-link/simple.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/article-link/simple.html rename to themes/blowfish/layouts/partials/article-link/simple.html diff --git a/web-myco/themes/blowfish/layouts/partials/article-meta/basic.html b/themes/blowfish/layouts/partials/article-meta/basic.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/article-meta/basic.html rename to themes/blowfish/layouts/partials/article-meta/basic.html diff --git a/web-myco/themes/blowfish/layouts/partials/article-meta/list.html b/themes/blowfish/layouts/partials/article-meta/list.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/article-meta/list.html rename to themes/blowfish/layouts/partials/article-meta/list.html diff --git a/web-myco/themes/blowfish/layouts/partials/article-meta/taxonomy.html b/themes/blowfish/layouts/partials/article-meta/taxonomy.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/article-meta/taxonomy.html rename to themes/blowfish/layouts/partials/article-meta/taxonomy.html diff --git a/web-myco/themes/blowfish/layouts/partials/article-meta/term.html b/themes/blowfish/layouts/partials/article-meta/term.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/article-meta/term.html rename to themes/blowfish/layouts/partials/article-meta/term.html diff --git a/web-myco/themes/blowfish/layouts/partials/article-pagination.html b/themes/blowfish/layouts/partials/article-pagination.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/article-pagination.html rename to themes/blowfish/layouts/partials/article-pagination.html diff --git a/web-myco/themes/blowfish/layouts/partials/author-extra.html b/themes/blowfish/layouts/partials/author-extra.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/author-extra.html rename to themes/blowfish/layouts/partials/author-extra.html diff --git a/web-myco/themes/blowfish/layouts/partials/author-links.html b/themes/blowfish/layouts/partials/author-links.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/author-links.html rename to themes/blowfish/layouts/partials/author-links.html diff --git a/web-myco/themes/blowfish/layouts/partials/author.html b/themes/blowfish/layouts/partials/author.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/author.html rename to themes/blowfish/layouts/partials/author.html diff --git a/web-myco/themes/blowfish/layouts/partials/badge.html b/themes/blowfish/layouts/partials/badge.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/badge.html rename to themes/blowfish/layouts/partials/badge.html diff --git a/web-myco/themes/blowfish/layouts/partials/breadcrumbs.html b/themes/blowfish/layouts/partials/breadcrumbs.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/breadcrumbs.html rename to themes/blowfish/layouts/partials/breadcrumbs.html diff --git a/web-myco/themes/blowfish/layouts/partials/footer.html b/themes/blowfish/layouts/partials/footer.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/footer.html rename to themes/blowfish/layouts/partials/footer.html diff --git a/web-myco/themes/blowfish/layouts/partials/functions/date.html b/themes/blowfish/layouts/partials/functions/date.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/functions/date.html rename to themes/blowfish/layouts/partials/functions/date.html diff --git a/web-myco/themes/blowfish/layouts/partials/head.html b/themes/blowfish/layouts/partials/head.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/head.html rename to themes/blowfish/layouts/partials/head.html diff --git a/web-myco/themes/blowfish/layouts/partials/header/basic.html b/themes/blowfish/layouts/partials/header/basic.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/header/basic.html rename to themes/blowfish/layouts/partials/header/basic.html diff --git a/web-myco/themes/blowfish/layouts/partials/header/fixed-fill-blur.html b/themes/blowfish/layouts/partials/header/fixed-fill-blur.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/header/fixed-fill-blur.html rename to themes/blowfish/layouts/partials/header/fixed-fill-blur.html diff --git a/web-myco/themes/blowfish/layouts/partials/header/fixed-fill.html b/themes/blowfish/layouts/partials/header/fixed-fill.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/header/fixed-fill.html rename to themes/blowfish/layouts/partials/header/fixed-fill.html diff --git a/web-myco/themes/blowfish/layouts/partials/header/fixed.html b/themes/blowfish/layouts/partials/header/fixed.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/header/fixed.html rename to themes/blowfish/layouts/partials/header/fixed.html diff --git a/web-myco/themes/blowfish/layouts/partials/header/header-mobile-option-nested.html b/themes/blowfish/layouts/partials/header/header-mobile-option-nested.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/header/header-mobile-option-nested.html rename to themes/blowfish/layouts/partials/header/header-mobile-option-nested.html diff --git a/web-myco/themes/blowfish/layouts/partials/header/header-mobile-option-simple.html b/themes/blowfish/layouts/partials/header/header-mobile-option-simple.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/header/header-mobile-option-simple.html rename to themes/blowfish/layouts/partials/header/header-mobile-option-simple.html diff --git a/web-myco/themes/blowfish/layouts/partials/header/header-mobile-option.html b/themes/blowfish/layouts/partials/header/header-mobile-option.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/header/header-mobile-option.html rename to themes/blowfish/layouts/partials/header/header-mobile-option.html diff --git a/web-myco/themes/blowfish/layouts/partials/header/header-option-nested.html b/themes/blowfish/layouts/partials/header/header-option-nested.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/header/header-option-nested.html rename to themes/blowfish/layouts/partials/header/header-option-nested.html diff --git a/web-myco/themes/blowfish/layouts/partials/header/header-option-simple.html b/themes/blowfish/layouts/partials/header/header-option-simple.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/header/header-option-simple.html rename to themes/blowfish/layouts/partials/header/header-option-simple.html diff --git a/web-myco/themes/blowfish/layouts/partials/header/header-option.html b/themes/blowfish/layouts/partials/header/header-option.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/header/header-option.html rename to themes/blowfish/layouts/partials/header/header-option.html diff --git a/web-myco/themes/blowfish/layouts/partials/hero/background.html b/themes/blowfish/layouts/partials/hero/background.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/hero/background.html rename to themes/blowfish/layouts/partials/hero/background.html diff --git a/web-myco/themes/blowfish/layouts/partials/hero/basic.html b/themes/blowfish/layouts/partials/hero/basic.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/hero/basic.html rename to themes/blowfish/layouts/partials/hero/basic.html diff --git a/web-myco/themes/blowfish/layouts/partials/hero/big.html b/themes/blowfish/layouts/partials/hero/big.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/hero/big.html rename to themes/blowfish/layouts/partials/hero/big.html diff --git a/web-myco/themes/blowfish/layouts/partials/hero/thumbAndBackground.html b/themes/blowfish/layouts/partials/hero/thumbAndBackground.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/hero/thumbAndBackground.html rename to themes/blowfish/layouts/partials/hero/thumbAndBackground.html diff --git a/web-myco/themes/blowfish/layouts/partials/home/background.html b/themes/blowfish/layouts/partials/home/background.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/home/background.html rename to themes/blowfish/layouts/partials/home/background.html diff --git a/web-myco/themes/blowfish/layouts/partials/home/card.html b/themes/blowfish/layouts/partials/home/card.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/home/card.html rename to themes/blowfish/layouts/partials/home/card.html diff --git a/web-myco/themes/blowfish/layouts/partials/home/hero.html b/themes/blowfish/layouts/partials/home/hero.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/home/hero.html rename to themes/blowfish/layouts/partials/home/hero.html diff --git a/web-myco/themes/blowfish/layouts/partials/home/page.html b/themes/blowfish/layouts/partials/home/page.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/home/page.html rename to themes/blowfish/layouts/partials/home/page.html diff --git a/web-myco/themes/blowfish/layouts/partials/home/profile.html b/themes/blowfish/layouts/partials/home/profile.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/home/profile.html rename to themes/blowfish/layouts/partials/home/profile.html diff --git a/web-myco/themes/blowfish/layouts/partials/icon.html b/themes/blowfish/layouts/partials/icon.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/icon.html rename to themes/blowfish/layouts/partials/icon.html diff --git a/web-myco/themes/blowfish/layouts/partials/meta/date-updated.html b/themes/blowfish/layouts/partials/meta/date-updated.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/meta/date-updated.html rename to themes/blowfish/layouts/partials/meta/date-updated.html diff --git a/web-myco/themes/blowfish/layouts/partials/meta/date.html b/themes/blowfish/layouts/partials/meta/date.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/meta/date.html rename to themes/blowfish/layouts/partials/meta/date.html diff --git a/web-myco/themes/blowfish/layouts/partials/meta/edit.html b/themes/blowfish/layouts/partials/meta/edit.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/meta/edit.html rename to themes/blowfish/layouts/partials/meta/edit.html diff --git a/web-myco/themes/blowfish/layouts/partials/meta/likes.html b/themes/blowfish/layouts/partials/meta/likes.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/meta/likes.html rename to themes/blowfish/layouts/partials/meta/likes.html diff --git a/web-myco/themes/blowfish/layouts/partials/meta/likes_button.html b/themes/blowfish/layouts/partials/meta/likes_button.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/meta/likes_button.html rename to themes/blowfish/layouts/partials/meta/likes_button.html diff --git a/themes/blowfish/layouts/partials/meta/reading-time.html b/themes/blowfish/layouts/partials/meta/reading-time.html new file mode 100644 index 0000000..69b2425 --- /dev/null +++ b/themes/blowfish/layouts/partials/meta/reading-time.html @@ -0,0 +1,2 @@ +{{- i18n "article.reading_time" .ReadingTime | markdownify | emojify -}} +{{- /* Trim EOF */ -}} diff --git a/web-myco/themes/blowfish/layouts/partials/meta/views.html b/themes/blowfish/layouts/partials/meta/views.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/meta/views.html rename to themes/blowfish/layouts/partials/meta/views.html diff --git a/web-myco/themes/blowfish/layouts/partials/meta/word-count.html b/themes/blowfish/layouts/partials/meta/word-count.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/meta/word-count.html rename to themes/blowfish/layouts/partials/meta/word-count.html diff --git a/web-myco/themes/blowfish/layouts/partials/pagination.html b/themes/blowfish/layouts/partials/pagination.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/pagination.html rename to themes/blowfish/layouts/partials/pagination.html diff --git a/web-myco/themes/blowfish/layouts/partials/recent-articles/cardview-fullwidth.html b/themes/blowfish/layouts/partials/recent-articles/cardview-fullwidth.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/recent-articles/cardview-fullwidth.html rename to themes/blowfish/layouts/partials/recent-articles/cardview-fullwidth.html diff --git a/web-myco/themes/blowfish/layouts/partials/recent-articles/cardview.html b/themes/blowfish/layouts/partials/recent-articles/cardview.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/recent-articles/cardview.html rename to themes/blowfish/layouts/partials/recent-articles/cardview.html diff --git a/web-myco/themes/blowfish/layouts/partials/recent-articles/list.html b/themes/blowfish/layouts/partials/recent-articles/list.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/recent-articles/list.html rename to themes/blowfish/layouts/partials/recent-articles/list.html diff --git a/web-myco/themes/blowfish/layouts/partials/recent-articles/main.html b/themes/blowfish/layouts/partials/recent-articles/main.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/recent-articles/main.html rename to themes/blowfish/layouts/partials/recent-articles/main.html diff --git a/web-myco/themes/blowfish/layouts/partials/related.html b/themes/blowfish/layouts/partials/related.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/related.html rename to themes/blowfish/layouts/partials/related.html diff --git a/web-myco/themes/blowfish/layouts/partials/schema.html b/themes/blowfish/layouts/partials/schema.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/schema.html rename to themes/blowfish/layouts/partials/schema.html diff --git a/web-myco/themes/blowfish/layouts/partials/scroll-to-top.html b/themes/blowfish/layouts/partials/scroll-to-top.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/scroll-to-top.html rename to themes/blowfish/layouts/partials/scroll-to-top.html diff --git a/web-myco/themes/blowfish/layouts/partials/search.html b/themes/blowfish/layouts/partials/search.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/search.html rename to themes/blowfish/layouts/partials/search.html diff --git a/web-myco/themes/blowfish/layouts/partials/series-closed.html b/themes/blowfish/layouts/partials/series-closed.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/series-closed.html rename to themes/blowfish/layouts/partials/series-closed.html diff --git a/web-myco/themes/blowfish/layouts/partials/series.html b/themes/blowfish/layouts/partials/series.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/series.html rename to themes/blowfish/layouts/partials/series.html diff --git a/web-myco/themes/blowfish/layouts/partials/sharing-links.html b/themes/blowfish/layouts/partials/sharing-links.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/sharing-links.html rename to themes/blowfish/layouts/partials/sharing-links.html diff --git a/web-myco/themes/blowfish/layouts/partials/term-link/card.html b/themes/blowfish/layouts/partials/term-link/card.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/term-link/card.html rename to themes/blowfish/layouts/partials/term-link/card.html diff --git a/web-myco/themes/blowfish/layouts/partials/term-link/text.html b/themes/blowfish/layouts/partials/term-link/text.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/term-link/text.html rename to themes/blowfish/layouts/partials/term-link/text.html diff --git a/web-myco/themes/blowfish/layouts/partials/toc.html b/themes/blowfish/layouts/partials/toc.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/toc.html rename to themes/blowfish/layouts/partials/toc.html diff --git a/web-myco/themes/blowfish/layouts/partials/translations.html b/themes/blowfish/layouts/partials/translations.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/translations.html rename to themes/blowfish/layouts/partials/translations.html diff --git a/web-myco/themes/blowfish/layouts/partials/vendor.html b/themes/blowfish/layouts/partials/vendor.html similarity index 100% rename from web-myco/themes/blowfish/layouts/partials/vendor.html rename to themes/blowfish/layouts/partials/vendor.html diff --git a/web-myco/themes/blowfish/layouts/robots.txt b/themes/blowfish/layouts/robots.txt similarity index 100% rename from web-myco/themes/blowfish/layouts/robots.txt rename to themes/blowfish/layouts/robots.txt diff --git a/web-myco/themes/blowfish/layouts/shortcodes/alert.html b/themes/blowfish/layouts/shortcodes/alert.html similarity index 100% rename from web-myco/themes/blowfish/layouts/shortcodes/alert.html rename to themes/blowfish/layouts/shortcodes/alert.html diff --git a/web-myco/themes/blowfish/layouts/shortcodes/article.html b/themes/blowfish/layouts/shortcodes/article.html similarity index 100% rename from web-myco/themes/blowfish/layouts/shortcodes/article.html rename to themes/blowfish/layouts/shortcodes/article.html diff --git a/web-myco/themes/blowfish/layouts/shortcodes/badge.html b/themes/blowfish/layouts/shortcodes/badge.html similarity index 100% rename from web-myco/themes/blowfish/layouts/shortcodes/badge.html rename to themes/blowfish/layouts/shortcodes/badge.html diff --git a/web-myco/themes/blowfish/layouts/shortcodes/button.html b/themes/blowfish/layouts/shortcodes/button.html similarity index 100% rename from web-myco/themes/blowfish/layouts/shortcodes/button.html rename to themes/blowfish/layouts/shortcodes/button.html diff --git a/web-myco/themes/blowfish/layouts/shortcodes/carousel.html b/themes/blowfish/layouts/shortcodes/carousel.html similarity index 100% rename from web-myco/themes/blowfish/layouts/shortcodes/carousel.html rename to themes/blowfish/layouts/shortcodes/carousel.html diff --git a/web-myco/themes/blowfish/layouts/shortcodes/chart.html b/themes/blowfish/layouts/shortcodes/chart.html similarity index 100% rename from web-myco/themes/blowfish/layouts/shortcodes/chart.html rename to themes/blowfish/layouts/shortcodes/chart.html diff --git a/web-myco/themes/blowfish/layouts/shortcodes/figure.html b/themes/blowfish/layouts/shortcodes/figure.html similarity index 100% rename from web-myco/themes/blowfish/layouts/shortcodes/figure.html rename to themes/blowfish/layouts/shortcodes/figure.html diff --git a/web-myco/themes/blowfish/layouts/shortcodes/gallery.html b/themes/blowfish/layouts/shortcodes/gallery.html similarity index 100% rename from web-myco/themes/blowfish/layouts/shortcodes/gallery.html rename to themes/blowfish/layouts/shortcodes/gallery.html diff --git a/web-myco/themes/blowfish/layouts/shortcodes/github.html b/themes/blowfish/layouts/shortcodes/github.html similarity index 100% rename from web-myco/themes/blowfish/layouts/shortcodes/github.html rename to themes/blowfish/layouts/shortcodes/github.html diff --git a/web-myco/themes/blowfish/layouts/shortcodes/gitlab.html b/themes/blowfish/layouts/shortcodes/gitlab.html similarity index 100% rename from web-myco/themes/blowfish/layouts/shortcodes/gitlab.html rename to themes/blowfish/layouts/shortcodes/gitlab.html diff --git a/web-myco/themes/blowfish/layouts/shortcodes/icon.html b/themes/blowfish/layouts/shortcodes/icon.html similarity index 100% rename from web-myco/themes/blowfish/layouts/shortcodes/icon.html rename to themes/blowfish/layouts/shortcodes/icon.html diff --git a/web-myco/themes/blowfish/layouts/shortcodes/katex.html b/themes/blowfish/layouts/shortcodes/katex.html similarity index 100% rename from web-myco/themes/blowfish/layouts/shortcodes/katex.html rename to themes/blowfish/layouts/shortcodes/katex.html diff --git a/web-myco/themes/blowfish/layouts/shortcodes/lead.html b/themes/blowfish/layouts/shortcodes/lead.html similarity index 100% rename from web-myco/themes/blowfish/layouts/shortcodes/lead.html rename to themes/blowfish/layouts/shortcodes/lead.html diff --git a/web-myco/themes/blowfish/layouts/shortcodes/list.html b/themes/blowfish/layouts/shortcodes/list.html similarity index 100% rename from web-myco/themes/blowfish/layouts/shortcodes/list.html rename to themes/blowfish/layouts/shortcodes/list.html diff --git a/web-myco/themes/blowfish/layouts/shortcodes/mermaid.html b/themes/blowfish/layouts/shortcodes/mermaid.html similarity index 100% rename from web-myco/themes/blowfish/layouts/shortcodes/mermaid.html rename to themes/blowfish/layouts/shortcodes/mermaid.html diff --git a/web-myco/themes/blowfish/layouts/shortcodes/screenshot.html b/themes/blowfish/layouts/shortcodes/screenshot.html similarity index 100% rename from web-myco/themes/blowfish/layouts/shortcodes/screenshot.html rename to themes/blowfish/layouts/shortcodes/screenshot.html diff --git a/web-myco/themes/blowfish/layouts/shortcodes/swatches.html b/themes/blowfish/layouts/shortcodes/swatches.html similarity index 100% rename from web-myco/themes/blowfish/layouts/shortcodes/swatches.html rename to themes/blowfish/layouts/shortcodes/swatches.html diff --git a/web-myco/themes/blowfish/layouts/shortcodes/timeline.html b/themes/blowfish/layouts/shortcodes/timeline.html similarity index 100% rename from web-myco/themes/blowfish/layouts/shortcodes/timeline.html rename to themes/blowfish/layouts/shortcodes/timeline.html diff --git a/web-myco/themes/blowfish/layouts/shortcodes/timelineItem.html b/themes/blowfish/layouts/shortcodes/timelineItem.html similarity index 100% rename from web-myco/themes/blowfish/layouts/shortcodes/timelineItem.html rename to themes/blowfish/layouts/shortcodes/timelineItem.html diff --git a/web-myco/themes/blowfish/layouts/shortcodes/typeit.html b/themes/blowfish/layouts/shortcodes/typeit.html similarity index 100% rename from web-myco/themes/blowfish/layouts/shortcodes/typeit.html rename to themes/blowfish/layouts/shortcodes/typeit.html diff --git a/web-myco/themes/blowfish/lighthouserc.js b/themes/blowfish/lighthouserc.js similarity index 100% rename from web-myco/themes/blowfish/lighthouserc.js rename to themes/blowfish/lighthouserc.js diff --git a/web-myco/themes/blowfish/package-lock.json b/themes/blowfish/package-lock.json similarity index 100% rename from web-myco/themes/blowfish/package-lock.json rename to themes/blowfish/package-lock.json diff --git a/web-myco/themes/blowfish/package.json b/themes/blowfish/package.json similarity index 100% rename from web-myco/themes/blowfish/package.json rename to themes/blowfish/package.json diff --git a/web-myco/themes/blowfish/processUsers.js b/themes/blowfish/processUsers.js similarity index 100% rename from web-myco/themes/blowfish/processUsers.js rename to themes/blowfish/processUsers.js diff --git a/web-myco/themes/blowfish/static/js/zoom.min.js b/themes/blowfish/static/js/zoom.min.js similarity index 100% rename from web-myco/themes/blowfish/static/js/zoom.min.js rename to themes/blowfish/static/js/zoom.min.js diff --git a/web-myco/themes/blowfish/static/site.webmanifest b/themes/blowfish/static/site.webmanifest similarity index 100% rename from web-myco/themes/blowfish/static/site.webmanifest rename to themes/blowfish/static/site.webmanifest diff --git a/web-myco/themes/blowfish/tailwind.config.js b/themes/blowfish/tailwind.config.js similarity index 100% rename from web-myco/themes/blowfish/tailwind.config.js rename to themes/blowfish/tailwind.config.js diff --git a/web-myco/themes/blowfish/theme.toml b/themes/blowfish/theme.toml similarity index 100% rename from web-myco/themes/blowfish/theme.toml rename to themes/blowfish/theme.toml diff --git a/web-myco/.hugo_build.lock b/web-myco/.hugo_build.lock deleted file mode 100644 index e69de29..0000000 diff --git a/web-myco/resources/_gen/images/android-chrome-512x512_hudaff464ec489fe150e0079699fc28b77_25369_288x288_fill_box_center_3.png b/web-myco/resources/_gen/images/android-chrome-512x512_hudaff464ec489fe150e0079699fc28b77_25369_288x288_fill_box_center_3.png deleted file mode 100644 index e8e2e15..0000000 Binary files a/web-myco/resources/_gen/images/android-chrome-512x512_hudaff464ec489fe150e0079699fc28b77_25369_288x288_fill_box_center_3.png and /dev/null differ diff --git a/web-myco/resources/_gen/images/blowfish_logo_hu184ea2fa12490a2458ca388a16ab730e_227816_288x288_fill_box_center_3.png b/web-myco/resources/_gen/images/blowfish_logo_hu184ea2fa12490a2458ca388a16ab730e_227816_288x288_fill_box_center_3.png deleted file mode 100644 index fa2a03e..0000000 Binary files a/web-myco/resources/_gen/images/blowfish_logo_hu184ea2fa12490a2458ca388a16ab730e_227816_288x288_fill_box_center_3.png and /dev/null differ diff --git a/web-myco/resources/_gen/images/mushroom-1_huaaca080708e8bb0494c12c1f8f9666c7_2005788_1200x0_resize_box_3.png b/web-myco/resources/_gen/images/mushroom-1_huaaca080708e8bb0494c12c1f8f9666c7_2005788_1200x0_resize_box_3.png deleted file mode 100644 index 2099fa7..0000000 Binary files a/web-myco/resources/_gen/images/mushroom-1_huaaca080708e8bb0494c12c1f8f9666c7_2005788_1200x0_resize_box_3.png and /dev/null differ diff --git a/web-myco/resources/_gen/images/mushroom-2_hu29d0905d0c9ab07c1bacfa41e1aaa293_1867819_600x0_resize_box_3.png b/web-myco/resources/_gen/images/mushroom-2_hu29d0905d0c9ab07c1bacfa41e1aaa293_1867819_600x0_resize_box_3.png deleted file mode 100644 index 8147576..0000000 Binary files a/web-myco/resources/_gen/images/mushroom-2_hu29d0905d0c9ab07c1bacfa41e1aaa293_1867819_600x0_resize_box_3.png and /dev/null differ diff --git a/web-myco/themes/blowfish/layouts/partials/meta/reading-time.html b/web-myco/themes/blowfish/layouts/partials/meta/reading-time.html deleted file mode 100644 index 71e706d..0000000 --- a/web-myco/themes/blowfish/layouts/partials/meta/reading-time.html +++ /dev/null @@ -1,4 +0,0 @@ - - {{- i18n "article.reading_time" .ReadingTime | markdownify | emojify -}} - -{{- /* Trim EOF */ -}}