forked from myst-templates/article-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.yml
63 lines (63 loc) · 1.71 KB
/
template.yml
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
jtex: v1
title: Article Theme
description: Simple site for displaying an article with associated notebooks.
version: 1.0.0
license: MIT
source: https://github.com/executablebooks/myst-theme
thumbnail: ./thumbnail.png
authors:
- name: Rowan Cockett
website: https://curvenote.com
affiliations:
- Curvenote
tags:
- book
options:
- type: boolean
id: hide_toc
description: Hide the table of contents
- type: boolean
id: hide_footer_links
description: Hide the previous/next links in the footer
- type: boolean
id: hide_outline
description: Hide the document outline on all pages
- type: number
id: outline_maxdepth
description: The maximum depth to show on the document outline, for example, `2` would show only two depths of headings (e.g. `<H1>` and `<H2>`).
min: 1
max: 6
integer: true
- type: string
id: twitter
description: Twitter handle related to the site
- type: file
id: favicon
description: Local path to favicon image
- type: file
id: logo
description: Local path to logo image
- type: file
id: logo_dark
description: Local path to logo image for dark mode
- type: string
id: logo_text
description: Short text to display next to logo at the top of all pages
- type: string
id: analytics_google
description: Google analytics key
- type: string
id: analytics_plausible
description: Plausible analytics key
- type: boolean
id: numbered_references
description: Show references as numbered, rather than in APA-style. Only applies to parenthetical citations.
build:
install: npm install
start: npm run start
files:
- server.js
- package.json
- package-lock.json
- public/**/*
- build/**/*