This repository was archived by the owner on Apr 18, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path_config.yml
160 lines (142 loc) · 3.89 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
# SITE SETTINGS
title: DTA Design Guide
description: A design guide for building Australian Government services with <a href="https://github.com/AusDTO/gov-au-ui-kit" rel="external">UI-Kit CSS framework</a>.
github_url: https://github.com/AusDTO/dto-design-guide
#google_analytics: UA-72255206-3
# UI Kit URL for javascript includes
uikit_github_url: https://github.com/AusDTO/gov-au-ui-kit
uikit_base_url: https://gov-au-ui-kit.apps.staging.digital.gov.au/
# Markdown flavor
markdown: kramdown
# Exclude files from being moved into the _site folder
exclude: [
"node_modules",
"_data",
"vendor",
"bin",
".DS_Store",
"Gemfile",
"Gemfile.lock",
"Rakefile",
"circle.yml",
"_config*.yml",
"config.ru",
"ld_library_path",
"LICENSE.md",
"manifest*.yml",
"yarn.lock",
"README.md",
"*.sublime-project"
]
# Gem dependencies
gems:
- jekyll-assets # https://github.com/jekyll/jekyll-assets
- rouge # https://github.com/jneen/rouge
# Asset sources
# More info: https://github.com/jekyll/jekyll-assets
assets:
assets:
- "*.png"
- "*.gif"
- "*.svg"
sources:
- _assets/scss
- _assets/vendor/dto-ui-kit/assets/sass/ui-kit
- _assets/img
- _assets/js
# Highlight engine
highlighter: rouge
# COLLECTIONS CONFIGURATION
#
# @required
# output {boolean} Whether or not to render the pages out
# title {string} The name of the collection for display in navigation
# abstract {string} Text for category description
# order {integer} The order attribute is used to sort the navigation.
collections:
getting-started:
output: true
title: "Getting started"
abstract: "Design system principles and basics for designers and developers."
order: 0
foundations:
output: true
title: "Foundations"
abstract: "Guidance on the UI-Kit core modules: typography, layout and colours."
order: 1
components:
output: true
title: "Components"
abstract: "How to use the building blocks of UI‑Kit: forms and buttons, list styles, accordions, badges and tables."
order: 2
patterns:
output: true
title: "Patterns"
abstract: "We are building a library of patterns that meet user needs. Find guidance on global, local and inline navigation."
order: 3
templates:
output: true
title: "Templates"
abstract: "We are working on templates for common types of service pages."
order: 4
# NAVIGATION
#
# @required
# parent {string} The name of the parent. This can be slugified or not
# children {object} All child pages, Format:
# folder {string} The folder name in which the content sits
# title {string} The title that will display on the page
defaults:
- scope: # GETTING STARTED CATEGORY
path: _getting-started
values:
parent: getting-started
children:
- folder: design-principles
title: Design principles
- folder: Developers
title: For developers
- scope: # FOUNDATION CATEGORY
path: _foundations
values:
parent: foundations
children:
- folder: typography
title: Typography
- folder: layout
title: Layout
- folder: colours
title: Colours
- scope: # COMPONENTS CATEGORY
path: _components
values:
parent: components
children:
- folder: forms-buttons
title: Forms & buttons
- folder: link-styles
title: Link styles
- folder: accordions
title: Accordions
- folder: badges
title: Badges
- folder: list styles
title: List styles
- folder: tables
title: Tables
- scope: # PATTERNS CATEGORY
path: _patterns
values:
parent: patterns
children:
- folder: navigation
title: Navigation
- folder: calendar-table
title: Calendar table
- folder: callouts
title: Callouts
- scope: # TEMPLATES CATEGORY
path: _templates
values:
parent: templates
children: