-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path_config.yml
79 lines (68 loc) · 1.73 KB
/
_config.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
# Titles and Descriptions
title: Pydicom
description: Learning and resources for Dicom in Python
logo: "/images/logo/logo.png"
# Site Config
host: 127.0.0.1 # the preview server used. Leave as is.
port: 4005 # the port where the preview is rendered.
output: web
url: "http://pydicom.github.io" # needed for sitemap.xml file only
google_analytics: "UA-100220676-1" # Google Analytics code
twitter_username: researchapps
github_username: pydicom
repo: "https://github.com/pydicom"
# Exclude
# these are the files and directories that jekyll will exclude from the build
exclude:
- .gitignore
- README.md
- vendor
# Optional Feedback Link in Header (disabled)
feedback_subject_line: Pydicom Feedback
feedback_email: [email protected]
feedback_disable: true
feedback_text: "Need help?"
feedback_link: "http://www.github.com/pydicom/pydicom/issues"
# Collections
collections:
tooltips:
output: false
# collections are declared here. this renders the content in _tooltips and processes it, but doesn't output it as actual files in the output unless you change output to true
# Defaults
defaults:
-
scope:
path: ""
type: "pages"
values:
layout: "page"
comments: true
search: true
sidebar: main_sidebar
-
scope:
path: ""
type: "tooltips"
values:
layout: "page"
comments: true
search: true
tooltip: true
-
scope:
path: ""
type: "posts"
values:
layout: "post"
comments: true
search: true
sidebar: main_sidebar
# these are defaults used for the frontmatter for these file types
sidebars:
- main_sidebar
# asciinema defaults
asciicast:
cols: "115"
rows: "25"
speed: "2.0"
theme: "asciinema"