forked from hugo-toha/hugo-toha.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from f-yanez/merge_hugo_toha
Merge hugo toha Sep 2024
- Loading branch information
Showing
66 changed files
with
2,972 additions
and
2,206 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
name: PR Workflows | ||
|
||
# Run action on pull request event | ||
on: [pull_request] | ||
|
||
|
||
jobs: | ||
# Build exampleSite | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# checkout to the commit that has been pushed | ||
- uses: actions/checkout@v4.1.1 | ||
|
||
- name: Setup Node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18 | ||
|
||
- name: Install node modules | ||
run: npm install | ||
|
||
- name: Setup Hugo | ||
uses: peaceiris/actions-hugo@v3.0.0 | ||
with: | ||
hugo-version: 'latest' | ||
extended: true | ||
|
||
- name: Build | ||
run: | | ||
hugo --minify | ||
lighthouse-check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
#- name: Waiting for Netlify Preview | ||
# uses: kamranayub/wait-for-netlify-action@v2.1.1 | ||
# id: preview | ||
# with: | ||
# site_name: "toha" | ||
# max_timeout: 300 | ||
# env: | ||
# NETLIFY_TOKEN: ${{secrets.NETLIFY_TOKEN}} | ||
|
||
#- name: Run Lighthouse | ||
# uses: foo-software/lighthouse-check-action@v12.0.1 | ||
# id: lighthouseCheck | ||
# with: | ||
# accessToken: ${{ secrets.LIGHTHOUSE_TOKEN }} | ||
# gitHubAccessToken: ${{secrets.GITHUB_TOKEN}} | ||
# emulatedFormFactor: 'all' | ||
# prCommentEnabled: true | ||
# prCommentSaveOld: true | ||
# timeout: 5 | ||
# urls: "${{ steps.preview.outputs.url }},${{ steps.preview.outputs.url }}/posts/,${{ steps.preview.outputs.url }}/posts/markdown-sample/,${{ steps.preview.outputs.url }}/posts/shortcodes/" | ||
|
||
# Check for any broken links | ||
markdown-link-check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# checkout to latest commit | ||
- uses: actions/checkout@master | ||
|
||
#- name: Waiting for Netlify Preview | ||
# uses: kamranayub/wait-for-netlify-action@v2.1.1 | ||
# id: preview | ||
# with: | ||
# site_name: "toha" | ||
# max_timeout: 300 | ||
# env: | ||
# NETLIFY_TOKEN: ${{secrets.NETLIFY_TOKEN}} | ||
|
||
- name: Link Checker | ||
id: lychee | ||
uses: lycheeverse/lychee-action@v1.10.0 | ||
env: | ||
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | ||
with: | ||
args: "--verbose --exclude-mail ${{steps.preview.outputs.url}} --exclude=['https://www.udemy.com/']" | ||
output: lychee/out.md | ||
|
||
- name: Comment Broken Links | ||
if: ${{ steps.lychee.outputs.exit_code != 0 }} | ||
uses: marocchino/sticky-pull-request-comment@v2 | ||
with: | ||
path: lychee/out.md | ||
|
||
- name: Fail workflow if broken links found | ||
if: ${{ steps.lychee.outputs.exit_code != 0 }} | ||
run: exit 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
name: "Theme Update" | ||
|
||
on: | ||
schedule: | ||
- cron: "0 0 * * *" | ||
|
||
jobs: | ||
update-theme: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4.1.1 | ||
with: | ||
ref: main | ||
|
||
- name: Setup Node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18 | ||
|
||
- name: Setup Hugo | ||
uses: peaceiris/actions-hugo@v3.0.0 | ||
with: | ||
hugo-version: "latest" | ||
extended: true | ||
|
||
- name: Update hugo modules | ||
run: | | ||
# update to latest version of all modules | ||
hugo mod get -u | ||
# update the npm dependencies | ||
hugo mod npm pack | ||
# cleanup go.sum file | ||
hugo mod tidy | ||
- name: Install node modules | ||
run: npm install | ||
|
||
- name: Build | ||
run: | | ||
# build the site | ||
hugo --minify | ||
# remove file generated by the build | ||
rm -rf public/ | ||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@v7 | ||
with: | ||
base: main | ||
title: Update theme | ||
labels: automerge |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
resources/* | ||
node_modules/* | ||
public/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
image: registry.gitlab.com/pages/hugo/hugo_extended:latest | ||
|
||
default: | ||
before_script: | ||
- apk add --update --no-cache git go nodejs npm | ||
- hugo mod tidy | ||
- hugo mod npm pack | ||
- npm install | ||
|
||
test: | ||
script: | ||
- hugo | ||
rules: | ||
- if: $CI_COMMIT_REF_NAME != $CI_DEFAULT_BRANCH | ||
|
||
pages: | ||
script: | ||
- hugo | ||
artifacts: | ||
paths: | ||
- public | ||
rules: | ||
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
41 changes: 41 additions & 0 deletions
41
content/posts/category/sub-category/rich-content/index.bn.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
--- | ||
title: "সমৃদ্ধ কন্টেন্ট" | ||
date: 2020-06-08T08:06:25+06:00 | ||
description: Sample post with multiple images, embedded video etc. | ||
menu: | ||
sidebar: | ||
name: সমৃদ্ধ কন্টেন্ট | ||
identifier: rich-content | ||
parent: sub-category | ||
weight: 10 | ||
tags: ["মার্কডাউন","কন্টেন্ট সাজানো","বহুভাষিক"] | ||
categories: ["বেসিক"] | ||
--- | ||
|
||
এই নমুনা পোস্টটি এই বিষয়গুলো পরীক্ষা করার জন্যে করা হয়েছেঃ | ||
|
||
- বিভাগ, উপ-বিভাগে সাইডবারে একটির ভেতর আরেকটি কিভাবে আছে সেটা দেখা। | ||
- হেরো ছবিটি পোস্ট যে পথে আছে সে পথে `images` ফোল্ডার এ থাকবে। | ||
- বিভিন্ন মিডিয়া যেমন ছবি, টুইট, ইউটিউব ভিডিও, ভীমেও ভিডিও ইত্যাদি রেন্ডারিং। | ||
|
||
### ছবির নমুনা | ||
|
||
{{< img src="/posts/category/sub-category/rich-content/images/forest.jpg" align="center" title="Forest" >}} | ||
|
||
{{< vs >}} | ||
|
||
### টুইটের নুমুনা | ||
|
||
{{< tweet user="SanDiegoZoo" id="1453110110599868418" >}} | ||
|
||
{{< vs >}} | ||
|
||
### ইউটিওবের ভিডিও নমুনা | ||
|
||
{{< youtube ZJthWmvUzzc >}} | ||
|
||
{{< vs >}} | ||
|
||
### ভীমেও ভিডিও নমুনা | ||
|
||
{{< vimeo 48912912 >}} |
Oops, something went wrong.