Source files for the DataverseNO information website.
This is where the content of the website lives. When you save a change here, the website updates automatically within a few minutes — no technical steps required.
The website content is written in Markdown — a simple text format where you use plain characters for formatting, for example **bold** for bold and # Heading for a heading. You edit files directly in your browser on GitHub, or locally on your computer.
When a change is saved (committed) to the main branch, GitHub automatically rebuilds and publishes the website.
docs/
en/ English pages
nn/ Norwegian Nynorsk pages (mirrors en/ exactly)
stylesheets/ Visual styling (colours, fonts) — do not edit unless needed
prompts/ AI prompt templates for common tasks
context/ Background documents and design specifications
Each page in
docs/en/has a matching page indocs/nn/at the same path. Example:docs/en/deposit/prepare-your-data.md↔docs/nn/deposit/prepare-your-data.md
- Find the file in
docs/en/(ordocs/nn/for the Norwegian version) - Click the pencil icon on GitHub to edit it
- Make your changes
- Click Commit changes — the website will update automatically
- Create a new file in
docs/en/news/posts/namedYYYY-MM-DD-short-title.md— for example:2026-08-01-new-deposit-guidelines.md - Use this frontmatter at the top of the file:
---
date: 2026-08-01
authors:
- name: DataverseNO
tags:
- DataverseNO
---
Your post content here.- Create a matching file in
docs/nn/news/posts/with the Norwegian translation - Use the AI prompt in
prompts/create-news-post.mdif you want help writing the post
- Create the Markdown file in the right folder under
docs/en/ - Create the matching Norwegian file under
docs/nn/ - Add the page to the navigation in
mkdocs.ymlunder thenav:section - Ask a technical colleague if you are unsure about step 3
Use the AI prompt template in prompts/translate-page.md:
paste the English page content into an AI assistant with that prompt, then save the result as the Norwegian file.
The website is published at: https://dataverseno.github.io/DataverseNO-Info/
After committing a change, it usually takes 1–3 minutes for the website to update. If it seems unchanged after 5 minutes, check the Actions tab at the top of this repository to see if the build has finished or if there was an error.
If you need to redeploy the website without making a content change (for example, if a deployment failed):
- Go to the Actions tab at the top of this repository
- Click Deploy to GitHub Pages in the left sidebar
- Click the Run workflow button on the right
- Leave the branch as
mainand click Run workflow
The site will rebuild and deploy within a few minutes.
| What you want | What to write |
|---|---|
| Bold | **bold** |
| Italic | *italic* |
| Link | [Link text](https://example.com) |
| Heading 1 | # Heading |
| Heading 2 | ## Heading |
| Bullet list | - item |
| Numbered list | 1. item |
| Note/admonition | !!! note followed by indented text |
Full MkDocs Material documentation: https://squidfunk.github.io/mkdocs-material/
For questions about the website or this repository, contact siv017@uit.no.