Skip to content

Latest commit

 

History

History
61 lines (46 loc) · 1.37 KB

README.md

File metadata and controls

61 lines (46 loc) · 1.37 KB

About

Source for my personal website, tomasfiers.net.

  • It uses Hugo as a static site generator; i.e. to convert Markdown files to HTML.
  • The theme is Hyde
  • The site is auto-built and hosted by Netlify

Many thanks to all three!

Deployment

The site is auto-published on each commit to GitHub.

Deploy/build status: Netlify Status

Text-only changes can therefore be made simply on GitHub.

For other development (layout eg), see the next section.

Local development

Clone with

git clone --recursive

to make sure the required submodules are also downloaded.

Install the Hugo version specified in netlify.toml.

Example, using the Chocolatey package manager on Windows:

choco install hugo --version 0.42 --yes


👉 To launch a local server with live-reloading:

hugo server

This command keeps the built site in memory.

When working on layout, use

hugo server --disableFastRender


To build to disk:

hugo