├── .github ├── .kodiak.toml ├── dependabot.yml └── workflows │ ├── merge-to-main.yml │ ├── pull-request.yml │ └── theme-update.yml ├── .gitignore ├── .gitlab-ci.yml ├── .hugo_build.lock ├── LICENSE ├── README.md ├── archetypes └── default.md ├── assets ├── images │ ├── author │ │ ├── jessica.png │ │ └── john.png │ ├── sections │ │ ├── achievements │ │ │ ├── graduation-cap.jpg │ │ │ ├── presenter.jpg │ │ │ ├── sport.jpg │ │ │ └── woman-winner.jpg │ │ ├── education │ │ │ ├── science_college.png │ │ │ ├── tech_college.png │ │ │ └── university.jpg │ │ ├── experiences │ │ │ ├── company1.jpg │ │ │ ├── company2.jpg │ │ │ └── company3.jpg │ │ ├── projects │ │ │ ├── kubernetes.png │ │ │ ├── no-code.png │ │ │ ├── tensorflow.png │ │ │ ├── toha.png │ │ │ └── toha_website.png │ │ └── skills │ │ │ ├── c++.png │ │ │ ├── cloud.png │ │ │ ├── docker.svg │ │ │ ├── git.png │ │ │ ├── go.png │ │ │ ├── kubernetes.png │ │ │ ├── linux.png │ │ │ └── prometheus.png │ └── site │ │ ├── background.jpg │ │ ├── favicon.png │ │ ├── inverted-logo.png │ │ └── main-logo.png └── jsconfig.json ├── content ├── notes │ ├── _index.bn.md │ ├── _index.md │ ├── bash │ │ ├── _index.bn.md │ │ ├── _index.md │ │ └── basic │ │ │ ├── index.bn.md │ │ │ └── index.md │ └── go │ │ ├── _index.bn.md │ │ ├── _index.md │ │ ├── advanced │ │ ├── _index.bn.md │ │ ├── _index.md │ │ └── files │ │ │ ├── index.bn.md │ │ │ └── index.md │ │ └── basic │ │ ├── _index.bn.md │ │ ├── _index.md │ │ ├── flow-control │ │ ├── index.md │ │ └── indexbn.md │ │ ├── introduction │ │ ├── index.bn.md │ │ └── index.md │ │ └── types │ │ ├── index.bn.md │ │ └── index.md └── posts │ ├── _index.bn.md │ ├── _index.md │ ├── category │ ├── _index.bn.md │ ├── _index.md │ └── sub-category │ │ ├── _index.bn.md │ │ ├── _index.md │ │ └── rich-content │ │ ├── images │ │ ├── forest.jpg │ │ └── hero.svg │ │ ├── index.bn.md │ │ └── index.md │ ├── introduction │ ├── hero.svg │ ├── index.bn.md │ └── index.md │ ├── markdown-sample │ ├── hero.svg │ ├── index.bn.md │ └── index.md │ └── shortcodes │ ├── boat.jpg │ ├── index.bn.md │ └── index.md ├── data ├── bn │ ├── author.yaml │ ├── sections │ │ ├── about.yaml │ │ ├── accomplishments.yaml │ │ ├── achievements.yaml │ │ ├── education.yaml │ │ ├── experiences.yaml │ │ ├── projects.yaml │ │ ├── recent-posts.yaml │ │ └── skills.yaml │ └── site.yaml └── en │ ├── author.yaml │ ├── sections │ ├── about.yaml │ ├── accomplishments.yaml │ ├── achievements.yaml │ ├── education.yaml │ ├── experiences.yaml │ ├── featured-posts.yaml │ ├── projects.yaml │ ├── publications.yaml │ ├── recent-posts.yaml │ └── skills.yaml │ └── site.yaml ├── go.mod ├── go.sum ├── hugo.yaml ├── mise.toml ├── netlify.toml ├── package.hugo.json ├── package.json └── static ├── files └── resume.pdf └── videos └── sample.mp4 /.github/.kodiak.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/.github/.kodiak.toml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/merge-to-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/.github/workflows/merge-to-main.yml -------------------------------------------------------------------------------- /.github/workflows/pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/.github/workflows/pull-request.yml -------------------------------------------------------------------------------- /.github/workflows/theme-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/.github/workflows/theme-update.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.hugo_build.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/README.md -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/archetypes/default.md -------------------------------------------------------------------------------- /assets/images/author/jessica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/assets/images/author/jessica.png -------------------------------------------------------------------------------- /assets/images/author/john.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/assets/images/author/john.png -------------------------------------------------------------------------------- /assets/images/sections/achievements/graduation-cap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/assets/images/sections/achievements/graduation-cap.jpg -------------------------------------------------------------------------------- /assets/images/sections/achievements/presenter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/assets/images/sections/achievements/presenter.jpg -------------------------------------------------------------------------------- /assets/images/sections/achievements/sport.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/assets/images/sections/achievements/sport.jpg -------------------------------------------------------------------------------- /assets/images/sections/achievements/woman-winner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/assets/images/sections/achievements/woman-winner.jpg -------------------------------------------------------------------------------- /assets/images/sections/education/science_college.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/assets/images/sections/education/science_college.png -------------------------------------------------------------------------------- /assets/images/sections/education/tech_college.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/assets/images/sections/education/tech_college.png -------------------------------------------------------------------------------- /assets/images/sections/education/university.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/assets/images/sections/education/university.jpg -------------------------------------------------------------------------------- /assets/images/sections/experiences/company1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/assets/images/sections/experiences/company1.jpg -------------------------------------------------------------------------------- /assets/images/sections/experiences/company2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/assets/images/sections/experiences/company2.jpg -------------------------------------------------------------------------------- /assets/images/sections/experiences/company3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/assets/images/sections/experiences/company3.jpg -------------------------------------------------------------------------------- /assets/images/sections/projects/kubernetes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/assets/images/sections/projects/kubernetes.png -------------------------------------------------------------------------------- /assets/images/sections/projects/no-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/assets/images/sections/projects/no-code.png -------------------------------------------------------------------------------- /assets/images/sections/projects/tensorflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/assets/images/sections/projects/tensorflow.png -------------------------------------------------------------------------------- /assets/images/sections/projects/toha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/assets/images/sections/projects/toha.png -------------------------------------------------------------------------------- /assets/images/sections/projects/toha_website.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/assets/images/sections/projects/toha_website.png -------------------------------------------------------------------------------- /assets/images/sections/skills/c++.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/assets/images/sections/skills/c++.png -------------------------------------------------------------------------------- /assets/images/sections/skills/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/assets/images/sections/skills/cloud.png -------------------------------------------------------------------------------- /assets/images/sections/skills/docker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/assets/images/sections/skills/docker.svg -------------------------------------------------------------------------------- /assets/images/sections/skills/git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/assets/images/sections/skills/git.png -------------------------------------------------------------------------------- /assets/images/sections/skills/go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/assets/images/sections/skills/go.png -------------------------------------------------------------------------------- /assets/images/sections/skills/kubernetes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/assets/images/sections/skills/kubernetes.png -------------------------------------------------------------------------------- /assets/images/sections/skills/linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/assets/images/sections/skills/linux.png -------------------------------------------------------------------------------- /assets/images/sections/skills/prometheus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/assets/images/sections/skills/prometheus.png -------------------------------------------------------------------------------- /assets/images/site/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/assets/images/site/background.jpg -------------------------------------------------------------------------------- /assets/images/site/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/assets/images/site/favicon.png -------------------------------------------------------------------------------- /assets/images/site/inverted-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/assets/images/site/inverted-logo.png -------------------------------------------------------------------------------- /assets/images/site/main-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/assets/images/site/main-logo.png -------------------------------------------------------------------------------- /assets/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/assets/jsconfig.json -------------------------------------------------------------------------------- /content/notes/_index.bn.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: নোট সমূহ 3 | --- 4 | -------------------------------------------------------------------------------- /content/notes/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Notes 3 | --- 4 | -------------------------------------------------------------------------------- /content/notes/bash/_index.bn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/content/notes/bash/_index.bn.md -------------------------------------------------------------------------------- /content/notes/bash/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/content/notes/bash/_index.md -------------------------------------------------------------------------------- /content/notes/bash/basic/index.bn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/content/notes/bash/basic/index.bn.md -------------------------------------------------------------------------------- /content/notes/bash/basic/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/content/notes/bash/basic/index.md -------------------------------------------------------------------------------- /content/notes/go/_index.bn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/content/notes/go/_index.bn.md -------------------------------------------------------------------------------- /content/notes/go/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/content/notes/go/_index.md -------------------------------------------------------------------------------- /content/notes/go/advanced/_index.bn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/content/notes/go/advanced/_index.bn.md -------------------------------------------------------------------------------- /content/notes/go/advanced/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/content/notes/go/advanced/_index.md -------------------------------------------------------------------------------- /content/notes/go/advanced/files/index.bn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/content/notes/go/advanced/files/index.bn.md -------------------------------------------------------------------------------- /content/notes/go/advanced/files/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/content/notes/go/advanced/files/index.md -------------------------------------------------------------------------------- /content/notes/go/basic/_index.bn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/content/notes/go/basic/_index.bn.md -------------------------------------------------------------------------------- /content/notes/go/basic/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/content/notes/go/basic/_index.md -------------------------------------------------------------------------------- /content/notes/go/basic/flow-control/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/content/notes/go/basic/flow-control/index.md -------------------------------------------------------------------------------- /content/notes/go/basic/flow-control/indexbn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/content/notes/go/basic/flow-control/indexbn.md -------------------------------------------------------------------------------- /content/notes/go/basic/introduction/index.bn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/content/notes/go/basic/introduction/index.bn.md -------------------------------------------------------------------------------- /content/notes/go/basic/introduction/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/content/notes/go/basic/introduction/index.md -------------------------------------------------------------------------------- /content/notes/go/basic/types/index.bn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/content/notes/go/basic/types/index.bn.md -------------------------------------------------------------------------------- /content/notes/go/basic/types/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/content/notes/go/basic/types/index.md -------------------------------------------------------------------------------- /content/posts/_index.bn.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: পোস্ট সমূহ 3 | --- 4 | -------------------------------------------------------------------------------- /content/posts/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Posts 3 | --- 4 | -------------------------------------------------------------------------------- /content/posts/category/_index.bn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/content/posts/category/_index.bn.md -------------------------------------------------------------------------------- /content/posts/category/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/content/posts/category/_index.md -------------------------------------------------------------------------------- /content/posts/category/sub-category/_index.bn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/content/posts/category/sub-category/_index.bn.md -------------------------------------------------------------------------------- /content/posts/category/sub-category/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/content/posts/category/sub-category/_index.md -------------------------------------------------------------------------------- /content/posts/category/sub-category/rich-content/images/forest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/content/posts/category/sub-category/rich-content/images/forest.jpg -------------------------------------------------------------------------------- /content/posts/category/sub-category/rich-content/images/hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/content/posts/category/sub-category/rich-content/images/hero.svg -------------------------------------------------------------------------------- /content/posts/category/sub-category/rich-content/index.bn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/content/posts/category/sub-category/rich-content/index.bn.md -------------------------------------------------------------------------------- /content/posts/category/sub-category/rich-content/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/content/posts/category/sub-category/rich-content/index.md -------------------------------------------------------------------------------- /content/posts/introduction/hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/content/posts/introduction/hero.svg -------------------------------------------------------------------------------- /content/posts/introduction/index.bn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/content/posts/introduction/index.bn.md -------------------------------------------------------------------------------- /content/posts/introduction/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/content/posts/introduction/index.md -------------------------------------------------------------------------------- /content/posts/markdown-sample/hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/content/posts/markdown-sample/hero.svg -------------------------------------------------------------------------------- /content/posts/markdown-sample/index.bn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/content/posts/markdown-sample/index.bn.md -------------------------------------------------------------------------------- /content/posts/markdown-sample/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/content/posts/markdown-sample/index.md -------------------------------------------------------------------------------- /content/posts/shortcodes/boat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/content/posts/shortcodes/boat.jpg -------------------------------------------------------------------------------- /content/posts/shortcodes/index.bn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/content/posts/shortcodes/index.bn.md -------------------------------------------------------------------------------- /content/posts/shortcodes/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/content/posts/shortcodes/index.md -------------------------------------------------------------------------------- /data/bn/author.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/data/bn/author.yaml -------------------------------------------------------------------------------- /data/bn/sections/about.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/data/bn/sections/about.yaml -------------------------------------------------------------------------------- /data/bn/sections/accomplishments.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/data/bn/sections/accomplishments.yaml -------------------------------------------------------------------------------- /data/bn/sections/achievements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/data/bn/sections/achievements.yaml -------------------------------------------------------------------------------- /data/bn/sections/education.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/data/bn/sections/education.yaml -------------------------------------------------------------------------------- /data/bn/sections/experiences.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/data/bn/sections/experiences.yaml -------------------------------------------------------------------------------- /data/bn/sections/projects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/data/bn/sections/projects.yaml -------------------------------------------------------------------------------- /data/bn/sections/recent-posts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/data/bn/sections/recent-posts.yaml -------------------------------------------------------------------------------- /data/bn/sections/skills.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/data/bn/sections/skills.yaml -------------------------------------------------------------------------------- /data/bn/site.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/data/bn/site.yaml -------------------------------------------------------------------------------- /data/en/author.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/data/en/author.yaml -------------------------------------------------------------------------------- /data/en/sections/about.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/data/en/sections/about.yaml -------------------------------------------------------------------------------- /data/en/sections/accomplishments.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/data/en/sections/accomplishments.yaml -------------------------------------------------------------------------------- /data/en/sections/achievements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/data/en/sections/achievements.yaml -------------------------------------------------------------------------------- /data/en/sections/education.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/data/en/sections/education.yaml -------------------------------------------------------------------------------- /data/en/sections/experiences.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/data/en/sections/experiences.yaml -------------------------------------------------------------------------------- /data/en/sections/featured-posts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/data/en/sections/featured-posts.yaml -------------------------------------------------------------------------------- /data/en/sections/projects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/data/en/sections/projects.yaml -------------------------------------------------------------------------------- /data/en/sections/publications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/data/en/sections/publications.yaml -------------------------------------------------------------------------------- /data/en/sections/recent-posts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/data/en/sections/recent-posts.yaml -------------------------------------------------------------------------------- /data/en/sections/skills.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/data/en/sections/skills.yaml -------------------------------------------------------------------------------- /data/en/site.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/data/en/site.yaml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/go.sum -------------------------------------------------------------------------------- /hugo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/hugo.yaml -------------------------------------------------------------------------------- /mise.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/mise.toml -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.hugo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/package.hugo.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/package.json -------------------------------------------------------------------------------- /static/files/resume.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/static/files/resume.pdf -------------------------------------------------------------------------------- /static/videos/sample.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-themes/toha-example-site/HEAD/static/videos/sample.mp4 --------------------------------------------------------------------------------