Skip to content

Hack & Söhne organisation website powered by HUGO and Netlify

Notifications You must be signed in to change notification settings

hackundsoehne/hacksite

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

52 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hacksite

Netlify Status

This is the source code of the HUGO based Hack & Söhne organisation website. The website is deployed from this repository via netlify. Note that changes are published live from the main branch.

Setup

  1. Install HUGO
  2. git clone --recurse-submodules [email protected]:hackundsoehne/hacksite.git
  3. cd hacksite
  4. hugo server

Theme

This website uses the Hackurat HUGO theme. It's managed via git submodules. To update the Hackurat theme submodule, run the following command and commit the resulting changes:

git submodule update --remote --merge

How to add a new event

The Hackurat theme provides an events archetype. It comes into play when the hugo new command is used to create a new content file in the events content directory.

Adjust and use the following command to create a new event: hugo new events/<YYYY-mm-dd-name-of-event>.de.md. This will create a new file in content/events.

Edit the new file by setting date in the front matter to the start date of the events. Also adjust all other front matter variables and make sure the translationKey (docs) is unique accross all events.

Now it's time to translate the event, since our website is published in German and English. Copy the previously created events/<YYYY-mm-dd-name-of-event>.de.md file and change the .de.md extension to .en.md to work on the English translation.

Once that's done run hugo server and make sure your event is showing up correctly.