Skip to content

clef-initiative/clef2026.github.io

Repository files navigation

CLEF 2026 Web Page

For guidelines on how to edit content, see README-content.md!

Building the Website Locally

  1. Install Hugo and install NPM.

  2. Update Git submodules:

    git submodule init
    git submodule update
  3. Install NPM dependencies:

    npm install
  4. (Optional) Run in local development mode to verify the page:

    hugo server -D --disableFastRender

    You can view the result in your browser (usually at localhost:1313).

  5. Built the static pages:

    hugo

This will create a public directory where the rendered static site is located.

Updating Theme

If the theme has changed, you can pull in the updates by:

git submodule update --remote --merge 
git add -f themes/clef-theme 
git commit -m "Update theme version"
git push