Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Briar Website
## Installation
Run the following inside your Hugo site folder:
```
$ git clone https://code.briarproject.org/briar/website.git
```
## Configuration
TODO
## Install
Test page with local hugo webserver:
```
hugo server -D
```
Generate static hugo pages:
```
hugo
```
## Content Types
### Post
Used for blog posts. Blog posts are listed on the homepage.
Run `hugo new post/<post-name>.md` to create a post.
### Page
Used for site pages.
Run `hugo new page/<page-name>.md` to create a page.