Getting Started
Getting Started
Prerequisites
- Git
- A text editor
- Basic knowledge of Markdown
Quick Start
Clone the repository and start writing:
git clone git@gitlab.com:jwbo-group/hugo-experiment.git
cd hugo-experimentAdd a new page under content/docs/:
---
title: My New Page
weight: 10
---
Your content here.Push to main and the site deploys automatically.
Project Structure
content/
├── _index.md # Homepage
├── docs/ # Documentation pages
│ ├── _index.md
│ ├── getting-started.md
│ └── architecture.md
└── blog/ # Blog posts
└── first-post.md