diff --git a/.gitattributes b/.gitattributes deleted file mode 100644 index 08eb44ccb59..00000000000 --- a/.gitattributes +++ /dev/null @@ -1,6 +0,0 @@ -*.docx binary -*.exe binary -*.jpg binary -*.pdf binary -*.png binary -*.xlsx binary diff --git a/.github/.kodiak.toml b/.github/.kodiak.toml deleted file mode 100644 index dfb60ab21f5..00000000000 --- a/.github/.kodiak.toml +++ /dev/null @@ -1,19 +0,0 @@ - -# .kodiak.toml -version = 1 -[merge] -method = "squash" # default: "merge" -delete_branch_on_merge = true # default: false -optimistic_updates = true # default: true -prioritize_ready_to_merge = true # default: false - -[merge.message] -title = "pull_request_title" # default: "github_default" -body = "github_default" # default: "github_default" -strip_html_comments = true # default: false - -[update] -always = true # default: false - -[approve] -auto_approve_usernames = ["hossainemruz","dependabot"] diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 57d601936f0..00000000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,21 +0,0 @@ -# Update dependencies - -version: 2 -updates: -# Update the git submodules -- package-ecosystem: "gitsubmodule" - directory: "/" - schedule: - interval: "daily" - labels: - - "dependencies" - - "automerge" - -# Update the Github Action versions -- package-ecosystem: "github-actions" - directory: "/" - schedule: - interval: "daily" - labels: - - "dependencies" - - "automerge" diff --git a/.github/workflows/deploy-site.yaml b/.github/workflows/deploy-site.yaml deleted file mode 100644 index 6cd521ac55c..00000000000 --- a/.github/workflows/deploy-site.yaml +++ /dev/null @@ -1,36 +0,0 @@ -name: Deploy to Github Pages - -# run when a commit is pushed to "source" branch -on: - push: - branches: - - source - -jobs: - deploy: - runs-on: ubuntu-latest - steps: - # checkout to the commit that has been pushed - - uses: actions/checkout@v2 - with: - submodules: true # Fetch Hugo themes (true OR recursive) - fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod - - # install Hugo - - name: Setup Hugo - uses: peaceiris/actions-hugo@v2.6.0 - with: - hugo-version: 'latest' - extended: true - - # build website - - name: Build - run: hugo --minify - - # push the generated content into the `main` (former `master`) branch. - - name: Deploy - uses: peaceiris/actions-gh-pages@v3.8.0 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_branch: main # if your main branch is `master` use that here. - publish_dir: ./public diff --git a/.github/workflows/html-proof.yaml b/.github/workflows/html-proof.yaml deleted file mode 100644 index 620bcb6cd9f..00000000000 --- a/.github/workflows/html-proof.yaml +++ /dev/null @@ -1,33 +0,0 @@ -name: HTML Proofer - -# run when a event happen in a PR -on: [pull_request] - -jobs: - proof-html: - runs-on: ubuntu-18.04 - steps: - # checkout to the commit that has been pushed - - uses: actions/checkout@v2 - with: - submodules: true # Fetch Hugo themes (true OR recursive) - fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod - - # install Hugo - - name: Setup Hugo - uses: peaceiris/actions-hugo@v2 - with: - hugo-version: 'latest' - extended: true - - # build website - - name: Build - run: hugo --minify - - # Run HTML Proofer - - uses: anishathalye/proof-html@v1 - with: - directory: ./public - enforce_https: false - url_ignore: "#" - url_ignore_re: ^https://www.pexels.com diff --git a/.github/workflows/lighthouse-check.yml b/.github/workflows/lighthouse-check.yml deleted file mode 100644 index c16f089023b..00000000000 --- a/.github/workflows/lighthouse-check.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: Lighthouse -on: [pull_request] - -jobs: - score-check: - runs-on: ubuntu-latest - steps: - # Wait for the preview deployed by Netlify - - name: Wait for preview deployed - uses: jakepartusch/wait-for-netlify-action@v1.2 - id: preview - with: - site_name: "toha" - max_timeout: 300 - - # Run Lighthouse check - - name: Run Lighthouse - uses: foo-software/lighthouse-check-action@v3.0.0 - id: lighthouseCheck - with: - accessToken: ${{ secrets.LIGHTHOUSE_TOKEN }} - emulatedFormFactor: 'all' - prCommentEnabled: true - urls: "${{ steps.preview.outputs.url }},${{ steps.preview.outputs.url }}/posts/,${{ steps.preview.outputs.url }}/posts/markdown-sample/" - - # Verify Lighthouse scores - - name: Verify Lighthouse scores - uses: foo-software/lighthouse-check-status-action@v1.0.1 - with: - lighthouseCheckResults: ${{ steps.lighthouseCheck.outputs.lighthouseCheckResults }} - minAccessibilityScore: "95" - minBestPracticesScore: "85" - minPerformanceScore: "60" - minProgressiveWebAppScore: "50" - minSeoScore: "90" diff --git a/.github/workflows/md-link-check.yaml b/.github/workflows/md-link-check.yaml deleted file mode 100644 index 25a6277e487..00000000000 --- a/.github/workflows/md-link-check.yaml +++ /dev/null @@ -1,13 +0,0 @@ -name: Check Markdown links - -# Run action on pull request event -on: [pull_request] - -jobs: - markdown-link-check: - runs-on: ubuntu-latest - steps: - # checkout to latest commit - - uses: actions/checkout@master - # run markdown linter - - uses: gaurav-nelson/github-action-markdown-link-check@v1 diff --git a/.github/workflows/percy.yml b/.github/workflows/percy.yml deleted file mode 100644 index b8d5ebd66c7..00000000000 --- a/.github/workflows/percy.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: Percy.io Visual Diff - -on: [pull_request] - -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v2.3.3 - with: - submodules: true # Fetch Hugo themes (true OR recursive) - fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod - - # install hugo - - name: Setup Hugo - uses: peaceiris/actions-hugo@v2.4.13 - with: - hugo-version: '0.77.0' - # extended: true - - # build the site - - name: Build - run: hugo --minify - - # run percy test - - name: Percy Test - uses: percy/snapshot-action@v0.1.2 - with: - build-directory: "public" - flags: --config=./.percy.yml - env: - PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }} diff --git a/.gitmodules b/.gitmodules deleted file mode 100644 index 59314e80ed1..00000000000 --- a/.gitmodules +++ /dev/null @@ -1,3 +0,0 @@ -[submodule "themes/toha"] - path = themes/toha - url = https://github.com/hugo-toha/toha.git diff --git a/.hugo_build.lock b/.hugo_build.lock deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/.percy.yml b/.percy.yml deleted file mode 100644 index 3523e9f77d7..00000000000 --- a/.percy.yml +++ /dev/null @@ -1,11 +0,0 @@ -version: 1 -# disable typing carousel -snapshot: - percy-css: | - #ityped { - display: none; - } - -# only snapshot these selected files -static-snapshots: - snapshot-files: 'index.html,bn/index.html,404.html,posts/index.html,bn/posts/index.html,posts/category/sub-category/rich-content/index.html,bn/posts/category/sub-category/rich-content/index.html,posts/markdown-sample/index.html,bn/posts/markdown-sample/index.html,posts/shortcodes/index.html,bn/posts/shortcodes/index.html' diff --git a/config.yaml b/config.yaml deleted file mode 100644 index 1bae2328729..00000000000 --- a/config.yaml +++ /dev/null @@ -1,99 +0,0 @@ -baseURL: "https://jsduenass.github.io/" - -languageCode: en-us -title: "Sebastian D 🇨🇴 " -theme: "toha" - -# Manage languages -# For any more details, you can check the official documentation: https://gohugo.io/content-management/multilingual/ -languages: - en: - languageName: English - weight: 1 -# es: -# languageName: Spanish -# weight: 2 - -# Force a locale to be use, really useful to develop the application ! Should be commented in production, the "weight" should rocks. -# DefaultContentLanguage: bn - -# Allow raw html in markdown file -markup: - goldmark: - renderer: - unsafe: true - tableOfContents: - startLevel: 2 - endLevel: 6 - ordered: false - -# At least HTML and JSON are required for the main HTML content and -# client-side JavaScript search -outputs: - home: - - HTML - - RSS - - JSON - -# Enable Google Analytics -googleAnalytics: UA-122321624-2 - -# Enable global emoji support -enableEmoji: true - -# Site parameters -params: - # Background image of the landing page - background: /images/site/background3.jpg - #background: /images/site/Simulation.gif - - # Provide logos for your site. The inverted logo will be used in the initial - # transparent navbar and the main logo will be used in the non-transparent navbar. - # It will default to the theme logos if not provided. - logo: - main: /images/site/logo.svg - inverted: /images/site/inverted-logo.svg - favicon: /images/site/logo.svg - - # GitHub repo of your site - gitRepo: https://github.com/jsduenass/jsduenass.github.io - # Default branch of your Git repo - gitBranch: source - - # Configure various features of this theme - features: - # Enable and configure portfolio - portfolio: - enable: true - # Enable and configure blog posts - blog: - enable: true - # Enable & configure "Notes" features - notes: - enable: false - - - # specify whether you want to show Table of Contents in reading page - enableTOC: true - - # Provide footer configuration. - footer: - enable: true - # You can provide your custom footer template using this option. - # Put your template in "layouts/partials" folder of your repo. - template: footer.html - # Show/hide navigation in the footer. Default is "true". - navigation: - enable: true - # Show/hide "Contact Me" section in the footer. Default is "true". - contactMe: - enable: true - # Show/hide credentials section in the footer. Default is "true". - credentials: - enable: false - - # Show/hide newsletter section in the footer. Default is "true". - # This feature hasn't been implemented yet. - # Currently, you can just hide it from the footer. - newsletter: - enable: false