Hugo-based website for the GIPS framework project.
Go to file
Maximilian Kratz 384d0d4df3
Merge pull request #13 from Echtzeitsysteme/feature/update-github-actions
Updates GitHub Actions: checkout, download artifact, upload artifact
2024-04-08 18:13:09 +02:00
.github/workflows Updates GitHub Actions: actions-gh-pages by peaceiris 2024-04-08 18:12:09 +02:00
archetypes Transfers eMoflon website project + adaptions for GIPS 2022-12-02 14:18:43 +01:00
content Adds eMoflon-IBeX link to the dev page 2024-02-27 11:47:03 +01:00
layouts Adds about text + MAKI link 2023-10-18 12:50:52 +02:00
static Fixes CNAME 2023-01-09 16:41:06 +01:00
themes Adds missing git submodules 2022-12-02 14:25:43 +01:00
.gitignore Transfers eMoflon website project + adaptions for GIPS 2022-12-02 14:18:43 +01:00
.gitmodules Transfers eMoflon website project + adaptions for GIPS 2022-12-02 14:18:43 +01:00
.htmltest.yml Fixes htmltest exclude 2023-01-09 17:06:59 +01:00
LICENSE Transfers eMoflon website project + adaptions for GIPS 2022-12-02 14:18:43 +01:00
README.md Updates README.md to new URL 2023-01-09 17:09:39 +01:00
config.yaml 2023 -> 2024 2024-01-17 09:53:28 +01:00

README.md

GIPS hugo website

This repository holds all content and build-related files for the GIPS website: https://gips.dev

Responsible for deployment and maintainment: Max Kratz <maximilian.kratz@es.tu-darmstadt.de>

Development environment

This web page is built using a static site generator Hugo. You may look into its documentation here.

Requirements

For contributing, you need the following things:

  • Hugo for building the page.
  • A git client like Gitkraken for versioning and contributing.
  • At least some write access in this repository.

Installation of Hugo

Please follow this (official) installation guide of Hugo.

This project uses Hugo version 0.101.0 extended or newer. Please notice that some standard packet sources like Debian/Ubuntu do not provide the minimum required version.

The easiest way to get the required version up and running is to download it from Github and install it by hand. Detailed steps for an installation from Github are described on this page.

It is important that you can start Hugo from your terminal and that it states the correct version number. You may check it using this command:

$ hugo version
hugo v0.101.0-466fa43c16709b4483689930a4f9ac8add5c9f66+extended linux/amd64 BuildDate=2022-06-16T07:09:16Z VendorInfo=gohugoio

Tip: Use the exact version stated above to prevent version incompatibilities. This version is also used by our CI-Pipeline.

Required downloads may be found here:

Usage of Hugo

In addition to the official Hugo documentation, you may find a collection of some useful commands here:

  • Build the page with Hugo: $ hugo
  • Build the page with Hugo including all drafts: $ hugo -D
  • Start a local webserver: $ hugo server --disableFastRender
    • --disableFastRender is optional.
    • Hugo serves the page at http://localhost:1313/.
    • Hint: Stop the service with CTRL+C.
  • Start a local webserver including all drafts: $ hugo server -D --disableFastRender
    • (Additional information as above.)

If you changed basic configuration parameters of the page, it may be neccessary to restart Hugos webserver completely to reload the configuration file(s).

Initialization of the project

  • Add your SSH key to Github.
  • Clone this git repository to your local workstation and enter the folder.
  • Initialize all submodules, as described here.
  • As a test, you may start a local webserver with hugo using $ hugo server -D --disableFastRender as command and verify, that the page is accessible using this url: http://localhost:1313
    • Please keep in mind that -D enables rendering of drafts.

Gitflow/Workflow

The workflow is heavily based on git-flow. A great summary may be found here: https://nvie.com/posts/a-successful-git-branching-model/

This means that the following rules apply in particular:

  • Nobody pushes directly to main branch except for maintainers.
  • For integration of changes, a so-called feature-branch has to be created, which is derived from the branch main.
    • A feature branch has to have the name feature/name-of-the-feature.
  • For integration of hotfixes, a so-called hotfix-branch has to be created, which is derived from the branch main.
    • A hotfix branch has to have the name hotfix/name-of-the-hotfix.
  • Once the change (feature or hotfix) is implemented, a Pull Request is created, which integrates the Feature-Branch into the branch main.
    • For pull requests, maintainers must always confirm that the changes will be integrated. (Please check the changes and do not just agree on them).

Responsible people should be entered as responsible for all issues and pull requests.

This section does not really refer to the content of the site, but to content tips and tricks for Hugo.

In the markdown pages for Hugo, there is a meta-information section at the top (for official documentation see here.). This can look like the following, for example:

---
title: "New Webpage"
date: 2022-07-18
draft: true
---

Declarations

  • title: Specifies the title of the page.
  • date: Here you can explicitly set the "last edited on".
  • draft: If true, then this page is a draft and will not be built/published. Locally, Hugo can be instructed by the parameter D to include this page(s) anyway.

Miscellaneous

Everything that did not really fit into the other sections.

Theme

The theme is the Cayman Hugo theme. It is integrated into the project as git submodule and must be initialized after the initial cloning of the repo.

$ git submodule update --init --recursive

Folder structure

The most important folders and files are listed here:

  • assets/ files that are processed by Hugo, e.g., css.
  • content/ Content of the pages, texts, structure etc.
  • layouts/ Own changes and/or extensions, e.g., of the theme.
  • static/ Static files that should be available on the finished web page in exactly the same way, e.g., images.
  • themes/ The theme of the page.
  • sources/ Source files for future graphics.
    • You should place all files, which are necessary for the creation of the integrated media, into this folder (e.g., Photoshop documents).

The basic folder structure is described in the official Hugo documentation.

External resources

Just a collection of some links, that may be helpful: