-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconf.yml
92 lines (88 loc) · 2.66 KB
/
conf.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# Configuration for Nicolino.
# Commented parts are the same as the defaults
# Some site options. These are available in templates
# as site_name (ex: site_title)
site:
title: "Nicolino"
description: "Nicolino: a static site generator"
url: "https://nicolino.ralsina.me"
footer: "Default Nicolino Theme"
# These are used to generate a base16 dark and light color
# scheme in CSS, which can be imported in custom.css
# Also, to choose the HighlightJS color schemes for syntax
# highlighting.
dark_scheme: "unikitty-dark"
light_scheme: "unikitty-light"
# This is a list of items to show in the navigation bar.
# In the default theme they are shown at the right of
# the title.
nav_items:
- "<span role='button' class='outline'><a href='https://github.com/ralsina/nicolino'>GitHub</a></span>"
# Some options affecting output
options:
# Format HTML nicely. Makes it larger but easier to read
# and understand.
pretty_html: true
# Image sizes for output
image_large: 1920
image_thumb: 640
# Where to write the output
output: "output/"
# Where the content is located
content: "content/"
# Where posts are located within content/
posts: "posts/"
# Where galleries are located within content/
galleries: "galleries/"
# Default localization options.
# If you want more than one language look at the laguages section
date_output_format: "%Y-%m-%d %H:%M"
locale: "en_US.UTF-8"
language: "en"
# What extensions you want associated with what pandoc format.
# For more details: https://pandoc.org/MANUAL.html#option--from
formats:
.rst: rst
.txt: rst
# How verbose should output be by default.
# 0: fatal (same as -q flag)
# 1: errors
# 2: warnings
# 3: info
# 4: debug
# 5: trace
verbosity: 3
# Options for languages if you have more than one.
# Each language key can contain all or part of this config file's structure,
# which will be overlayed on the default config.
# For example, these are some overrides that would work for Spanish
# in a site where the default language is English
#
# IMPORTANT: do NOT override the `content` path here.`
#
# languages:
# en:
# Taxonomies are ways to classify your content.
# For example, by tags, or by author.
taxonomies:
# Classify posts by tags
tags:
# A generic title for showing the tags
title: "🏷Tags"
# Title for a list of posts with a specific tag
term_title: "Posts tagged {{term.name}}"
# Where the files are located in content/ and on output/
location: "tags/"
# Features you want to enable are listed here
features:
- assets
- base16
- folder_indexes
- galleries
- images
- pages
- pandoc
- posts
- search
- sitemap
- taxonomies