-
Notifications
You must be signed in to change notification settings - Fork 0
/
retype.yml
93 lines (69 loc) · 4.2 KB
/
retype.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
93
input: src # The local path from this retype.yml file to your content files.
# -----------------------------------------------------------------------------
output: docs # Custom path to the output directory.
# -----------------------------------------------------------------------------
url: https://zalf-rdm.github.io/ # The base URL of your website.
# -----------------------------------------------------------------------------
branding:
title: BonaRes Overview of Standards # Your custom website title; keep it short.
logo: /static/img/bonares_logo.png # Path to a logo file.
logoAlign: left # Align the logo to the right or the left.
colors:
label: # Label colors
text: "#2ba2db" # Custom color for the label text.
background: "#dddddd" # Custom color for the label background.
# -----------------------------------------------------------------------------
poweredByRetype: true # Set to false to remove the Powered by Retype branding.
# A Retype Pro license is required.
# See: https://retype.com/pro
# -----------------------------------------------------------------------------
links: # A list of custom links to add to the top bar of the generated website.
# See also: footer.links
- text: Home of this report # The text to use for the link
link: index.md # start page of this report
icon: home # A custom icon name, :emoji:, <svg>, or path to a file.
conAlign: left # Icon alignment, to the left or right. Default is left.
- text: BonaRes Portal
link: https://www.bonares.de # Link to an internal file or external URL.
icon: globe
target: blank # Custom target. Use blank to open link in a new window.
# -----------------------------------------------------------------------------
footer:
copyright: "© Copyright . All rights reserved." # A custom copyright statement
links: # A list of links to include in the footer.
# See also: links
- text: Imprint # The text to use for the link
link: https://www.bonares.de/imprint
- text: Privacy Policy
link: https://www.bonares.de/privacypolicy
- text: License
link: license.md
# -----------------------------------------------------------------------------
exclude: # A list of files or folders to exclude from the build process.
# See also: include
#- "*_pluginstemp/" # Wildcards are valid.
- "markdown_example.md" # Exclude a specific file.
# -----------------------------------------------------------------------------
favicon: /static/img/favicon.png # Path to a custom favicon, or.
# just put a favicon.ico in your project root.
# -----------------------------------------------------------------------------
generator:
recase: all # Set to `none` to not recase any file or folder names.
# By default, all generated file and folder names are
# generated in all lowercase.
# -----------------------------------------------------------------------------
search: # Custom configuration of the website search component.
hotkeys:
- "/" # Keyboard key to set the cursor focus into the search field.
maxResults: 20 # Max number of search results to render.
minChars: 2 # Min number of characters required to trigger a sear.ch
mode: full # The search index creation mode.
# Options include: full | partial | basic
noResultsFoundMsg: "No results" # Message when no results are found.
placeholder: Search # Placeholder text used in the search input field.
# -----------------------------------------------------------------------------
templating:
enabled: true # Enable or disable the Retype content templating engine.
liquid: false # Is Liquid syntax {% ... %} enabled?
# If true, Retype is incompatible with
# GitBook style of component configuration.