-
Notifications
You must be signed in to change notification settings - Fork 12
/
_config.yml
executable file
·140 lines (114 loc) · 2.24 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
#
# URL settings
#
# these need to be adjusted depending on target platform,
# "real" deployment with github-pages but custom domain
# -----------------------------------------------------
url: https://quality.arc42.org
imageurl: https://quality.arc42.org
baseurl:
#######################################################
#
# basic settings
#
title: arc42 Quality Model
description: quality attributes, explained.
avatar: /assets/img/arc42logosquare.webp
favicon: /assets/img/arc42logosquare.webp
language: en
repository: arc42/quality.arc42.org-site
#
# want subtle ads (on post-pages)
#
show-subtle-ads: false
#
# Icons and Social-Media accounts
#
icons:
rss: false
email:
github: arc42
twitter:
youtube: arc42-video
stack_overflow: arc42
dev_to: gernotstarke
mastodon: gernotstarke
#
# Prettify url.
#
permalink: pretty
#
# Localizations.
#
str_next: Next
str_prev: Prev
str_read_more: Read more...
str_search: Search
str_recent_posts: Recent answers
str_show_all_posts: Show all...
#
# Plugins.
#
plugins:
- jekyll-sitemap
- jekyll-seo-tag
- jemoji
- jekyll-paginate
- jekyll-github-metadata
#
# tags, collections etc -
# see https://jekyllrb.com/docs/collections/
# every collection has their own tags...
collections:
posts:
hide: true
articles:
output: true
hide: true
## quality requirements to describe and capture specific quality requirements
requirements:
output: true
hide: true
## Filtering Content
future : false
unpublished : false
#
# with this default, all files under /_posts (other collections did not work with tags)
# get the qualities-layout per default, saving a bit of typing
#
defaults:
- scope:
path: "qualities"
type: "posts"
values:
layout: qualities
hide: "true"
- scope:
path: "requirements"
type: "posts"
values:
layout: requirements
hide: "true"
#
# !! Danger zone !!
#
markdown: kramdown
kramdown:
input: GFM
syntax_highlighter: rouge
excerpt_separator: <!--more-->
sass:
sass_dir: _sass
style: :compressed # or :expanded
include:
- _pages
exclude:
- originals/
- Dockerfile
- README.md
- .vscode
- _docker-compose*
- _manage*
- .sass-cache
- .code-workspace
- vendor/bundle