Go to file
jeff 084388d3b8
build image / build image (push) Successful in 31s Details
Move to Gitea Actions.
2023-07-30 21:41:26 -07:00
.gitea/workflows Move to Gitea Actions. 2023-07-30 21:41:26 -07:00
assets BlogPost_BooleanNames (#22) 2020-07-30 22:44:24 +00:00
content Add link to 7b-iv website. 2022-11-10 12:04:29 -08:00
layouts Close nav on page open. This is to work with the back button behavior on mobile. 2022-07-11 16:07:55 -07:00
static Add link to 7b-iv website. 2022-11-10 12:04:29 -08:00
.gitignore Ignore Hugo build lock file. 2022-04-20 14:36:14 -07:00
Dockerfile Update Dockerfile to use newly placed static web server. 2023-03-22 01:00:01 -07:00
Dockerfile.dev Remove Hugo version from builds (use latest). (#19) 2020-06-13 19:24:09 +00:00
README.md Update Dockerfile to use newly placed static web server. 2023-03-22 01:00:01 -07:00
config.toml BlogPost_BooleanNames (#22) 2020-07-30 22:44:24 +00:00

README.md

Simple Systems Website

Built using Hugo

Local development

hugo server

Development can also be run using Docker:

docker build --no-cache -f Dockerfile.dev -t website-fe . && \
docker run -it -p 1313:1313 --mount source=$(pwd),target=/src,type=bind --rm website-fe

Production

To build the production site, run the following command:

hugo --minify

The resources will be stored in the ./public directory.

Managing Job Posts

  • To add a job post, create the markdown file in content/jobs.
  • To remove a job post, remove its markdown file from content/jobs.

Managing Blog Posts

  • To add a blog post, create the markdown file in content/blog.
  • To remove a blog post, remove its markdown file from content/blog.