This repository contains the source for foundationmodels.dk, built with MkDocs Material.
- uv (Python package manager)
If you don't have uv installed, running make install will install it automatically.
Install dependencies:
make installServe locally with live reload:
make serveThe site will be available at http://127.0.0.1:8000.
Build the static site into site/:
make builddocs/ # Site content (Markdown)
index.md # Front page
news/ # News/blog posts
_static/ # Images, CSS, logos
overrides/ # MkDocs theme overrides
mkdocs.yml # MkDocs configuration
Create a new Markdown file in docs/news/posts/ with the following frontmatter:
---
draft: false
date: YYYY-MM-DD
tags:
- Model Release # or: Paper, News, Behind the Scenes
---
# Post title
Intro paragraph (shown in the post listing).
<!-- more -->
Full post content here.