This is the website of VVTk: A Toolkit for Volumetric Video Researchers.
You can open the website: https://nus-vv-streams.github.io/vvtk-docs/
- Git
- Node.js and NPM
- GO (optional)
- Hugo (optional)
- Clone the repository to your local computer
cdinto the project directory and runnpm installto install the dependencies- Run
npm run devto start development server - Open this URL:
http://localhost:1313/to start browsing your site locally. Note that it lets you preview your work and automatically refreshes your browser when you make changes.
This website is a Doks project.
assets/: Your project assets (scripts, styles, images, etc.)config/: Configuration files (Hyas, Hugo, PostCSS, etc.)content/: Your project content (docs, blog, etc.)layouts/: Your project layouts (partials, shortcodes, etc.)static/: Your non-code, unprocessed assets (fonts, icons, etc.)package.json: A project manifest (scripts, dependencies, etc).
.
├── assets/
├── config/
│ └───_default/
│ ├───hugo.toml - The site configuration file.
│ ├───menus.toml - The site menus file.
│ ├───module.toml - The Hugo mounts configuration file.
│ └───params.toml - The Doks + Hyas integrations configuration file.
│ └───production/
│ ├───hugo.toml - Overrides for production environment.
├── content/
│ └───docs/
│ ├───basics/
│ │ ├───_index.md
│ │ └───vv.md
│ │ └───vvplay.md
│ ├───guides/
│ │ ├───_index.md
│ │ └───getting-started.md
│ ├───reference/
│ │ ├───_index.md
│ │ └───developer.md
│ └───_index.md
│ └───privacy.md
├── layouts/
│ └───index.html - Go template for Home page
├── static/
└── package.json
Add new pages to your site by creating .md or .html files in content/docs/. Use sub-folders to organize your files and to create multiple path segments.
For example, the following command will generate a .md page at docs/guides/faq:
npm run create docs/guides/faq.mdAll Doks pages share a customizable common set of frontmatter properties to control how the page appears — for documentation pages:
---
title: "Example Guide"
description: ""
summary: ""
date: 2023-09-07T16:04:48+02:00
lastmod: 2023-09-07T16:04:48+02:00
draft: true
weight: 999
toc: true
seo:
title: "" # custom title (optional)
description: "" # custom description (recommended)
canonical: "" # custom canonical URL (optional)
noindex: false # false (default) or true
---