This is my new wordpress-free website! It includes a landing page, about me section, blog, projects list, and contact page.
You can create the page manually in 'en' and 'ga' in content with your own frontmatter. The frontmatter in the file would look like this:
---
title: "My First Post"
date: 2019-03-26T08:47:11+01:00
draft: true
---
You can use hugo to create a page, like I will show below:
hugo new posts/my-first-post.md
hugo new projects/my-first-project.md
I've written a workflow that deploys the website to https://mcgov.ie when a PR is merged into main from any branch. This method can be used to update any aspect of the website.
The only things that need to be changed on this site to make it usuable for another site is to update config.toml with your own content and baseURL, docker-compose.prod.yml with any port/traefik configuration, .github/workflows/deploy-prod.yml with your own server secrets, and deploy/deploy-prod.sh with your own deploy script.
McGov.ie & Coder is licensed under the MIT license.
Here is a git workflow for updating your fork (or downloaded copy) to the latest version:
cd themes
git remote add upstream https://github.com/luizdepra/hugo-coder.git
git fetch upstream
git merge upstream/main
# resolve the merge conflicts in your editor
git add . -u
git commit -m 'Updated to the latest version'
This theme is maintained by its author Luiz de Prá with the help from these awesome contributors.