Go to file
Luca bc9fa75bc8
continuous-integration/drone/push Build is passing Details
Add news post 'schedule-release'
2020-12-23 00:25:45 +01:00
archetypes Add 'news' archetype 2020-11-26 21:00:57 +01:00
assets Change 'justify-content' on .nav to 'flex-end' 2020-12-19 21:59:35 +01:00
content Add news post 'schedule-release' 2020-12-23 00:25:45 +01:00
i18n Add page title to window title, last modification time (according to Git) to footer 2020-11-24 21:50:02 +01:00
layouts Open schedule in new tab from main menu 2020-12-23 00:04:05 +01:00
static Logo no text 2020-12-17 19:48:32 +01:00
.drone.yml Fix site being extracted into ./public/ 2020-11-13 19:21:04 +01:00
.editorconfig add .idea to .gitignore, add .editorconfig 2020-12-17 19:06:51 +01:00
.gitignore add .idea to .gitignore, add .editorconfig 2020-12-17 19:06:51 +01:00
Dockerfile Fix docker container 2020-12-02 00:15:21 +01:00
README.md Add 'news' archetype 2020-11-26 21:00:57 +01:00
config.toml Open schedule in new tab from main menu 2020-12-23 00:04:05 +01:00

README.md

Docker for local development and testing

  1. Build Docker image: docker build -t hugo .
  2. Run container: docker run --rm -v $PWD:/var/www/html -p 1313:1313 hugo

Create a new news post

export TITLE="insert-title-here"
hugo new "news/$TITLE.md" && cp "content/news/$TITLE.md" "content/news/$TITLE.de.md"