-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path_config.yml
123 lines (110 loc) · 3.25 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
# SITE CONFIGURATION
baseurl: "/ak-lua-bibliothek-fuer-eep"
url: "https://andreas-kreuz.github.io"
# THEME-SPECIFIC CONFIGURATION
theme_settings:
# Meta
title: Lua-Bibliothek für EEP
avatar: assets/img/Avatar-Andreas-Kreuz.png
favicon: assets/img/Avatar-Andreas-Kreuz.png
gravatar: b3d6b9ea43f1401c06bf20a38fa3ba91 # Email MD5 hash
description: "Lua für EEP - Verkehrssteuerung und mehr" # used by search engines
# Header and footer text
header_text: >
<p>Lua Bibliothek für EEP 14</p>
header_text_feature_image: assets/headers/Titelbild-Simulator.jpg
footer_text: >
<p>Präsentiert von <a href="http://andreas-kreuz.github.io/">Andreas Kreuz</a> - Diskussion bitte in <a href="http://www.eepforum.de">Mein EEP Forum</a>.</p>
# Icons
github: "Andreas-Kreuz"
# Scripts
google_analytics: # Tracking ID, e.g. "UA-000000-01"
disqus_shortname:
katex: # Enable if using math markup
# Localization strings
str_follow_on: "Folgen"
str_rss_follow: "RSS-Feed abonieren"
str_email: "Email"
str_next_post: "Nächster Beitrag"
str_previous_post: "Vorheriger Beitrag"
str_next_page: "Weiter"
str_previous_page: "Zurück"
str_continue_reading: "Weiterlesen"
str_javascript_required_disqus: "Bitte Javascript einschalten, um die Kommentare zu lesen."
# Colours, typography and padding
# Open the "_sass > base" folder, and open "_variables.scss"
google_fonts: "Source+Sans+Pro:400,700,700italic,400italic"
# Post navigation
post_navigation: false
# PAGINATION
paginate: 5
paginate_path: "blog/page:num"
# PORTFOLIO
collections:
anleitungen-installation:
output: true
title: Erster Eindruck
permalink: /docs/:collection/:name
anleitungen-ampelkreuzung:
output: true
title: Schritt-für-Schritt-Anleitungen
permalink: /docs/:collection/:name
anleitungen-entwickler:
output: true
title: Für Entwickler
permalink: /docs/:collection/:name
seiten:
output: true
title: Seiten
permalink: /docs/:name
# BUILD SETTINGS
markdown: kramdown
highlighter: rouge
#################################################################
#
# IMPORTANT: GENERATE THE DOCUMENTATION FROM THE MASTER BRANCH
# BUT NOT FROM THE /docs FOLDER.
#
# Building from the project directory will include
# the neccessary README files from the Lua Folders.
#
#################################################################
# Where things are
source: .
destination: docs/_site
collections_dir: docs/
plugins_dir: docs/_plugins
layouts_dir: docs/_layouts
data_dir: docs/_data
includes_dir: docs/_includes
sass:
sass_dir: docs/_sass
style: :compressed
# Plugins
plugins:
- jekyll-paginate
- jekyll-seo-tag
- jemoji
exclude:
[
"Gemfile",
"Gemfile.lock",
"node_modules",
"vendor/bundle/",
"vendor/cache/",
"vendor/gems/",
"vendor/ruby/",
"lua/LUA/ak/io/exchange",
"*.lua",
"LICENSE",
"screenshot.png",
"server",
"web-app",
"web-server",
"web-shared"
]
defaults:
- scope:
path: "../lua"
values:
layout: "default"