A simple Hugo website for the workshop at Imperial College London, 17 June 2026.
hugo server
Open http://localhost:1313 in your browser.
hugo --minify
Output goes to ./public/.
.github/workflows/hugo.yml workflow will build and deploy automatically on every push to mainhugo --minify./public/ to a gh-pages branch, or configure GitHub Pages to serve from the docs/ folder.
├── content/
│ ├── _index.md # Home page content
│ ├── speakers.md # Speakers page
│ ├── registration.md # Registration page
│ └── organisers.md # Organisers page
├── layouts/
│ ├── _default/
│ │ ├── baseof.html # Base template
│ │ └── single.html # Single page template
│ ├── partials/
│ │ ├── head.html
│ │ ├── header.html
│ │ └── footer.html
│ └── index.html # Home page template
├── static/
│ ├── css/style.css # All styles (plain CSS)
│ └── images/banner.png # Workshop banner
├── hugo.toml # Hugo configuration
└── README.md
Content © 2026 EENG / Imperial College London.