-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yml
93 lines (75 loc) · 2.79 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
# Hologram will run from same directory where this config file resides
# All paths should be relative to there
# The directory containing the source files to parse recursively
source: ./src
# The directory that hologram will build to
destination: ./build
# The assets needed to build the docs (includes header.html,
# footer.html, etc)
# You may put doc related assets here too: images, css, etc.
documentation_assets: ./hologram/doc_assets/
# The folder that contains templates for rendering code examples.
# If you want to change the way code examples appear in the styleguide,
# modify the files in this folder
code_example_templates: ./hologram/code_example_templates
# The folder that contains custom code example renderers.
# If you want to create additional renderers that are not provided
# by Hologram (i.e. coffeescript renderer, jade renderer, etc)
# place them in this folder
code_example_renderers: ./hologram/code_example_renderers
# Any other asset folders that need to be copied to the destination
# folder. Typically this will include the css that you are trying to
# document. May also include additional folders as needed.
dependencies:
- ./src
# Mark which category should be the index page
# Alternatively, you may have an index.md in the documentation assets
# folder instead of specifying this config.
index: inicio
# To additionally output navigation for top level sections, set the value to
# 'section'. To output navigation for sub-sections,
# set the value to `all`
nav_level: all
# Hologram displays warnings when there are issues with your docs
# (e.g. if a component's parent is not found, if the _header.html and/or
# _footer.html files aren't found)
# If you want Hologram to exit on these warnings, set the value to 'true'
# (Default value is 'false')
exit_on_warnings: false
## Hologram Github Theme
# The CSS files to be included in the styleguide
css_include:
- './theme/css/theme.css'
- './src/reset.css'
- './src/color.css'
- './src/title.css'
- './src/link.css'
- './src/box.css'
- './src/page.css'
- './src/form/form.css'
- './src/form/button.css'
- './src/form/checkbox.css'
- './src/form/combo.css'
- './src/form/composite.css'
- './src/form/input.css'
- './src/form/options-group.css'
- './src/form/radio.css'
- './src/form/switcher.css'
- './src/form/textarea.css'
- './src/list.css'
- './src/modal.css'
- './src/dropdown.css'
- './src/notification.css'
- './src/label.css'
- './src/table.css'
- './src/pager.css'
- './src/menu.css'
- './src/grid.css'
- './src/fonts/sieve_icon_font/css/sieve-icon-font.css'
- './src/font.css'
# The JavaScript files to included in the styleguide
js_include:
- './theme/js/theme.js'
- './src/dropdown.js'
# The global title that is displayed at the top of the pages
global_title: Sieve Bootstrap v1.0