File tree Expand file tree Collapse file tree 4 files changed +126
-170
lines changed Expand file tree Collapse file tree 4 files changed +126
-170
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,8 @@ feedback: true
49
49
# If commented, will use material hat theme
50
50
# logo: "assets/img/logo/SRCC-square-red.png"
51
51
logo_pixels : 34
52
- color : " #8c1515" # primary color for header, buttons
52
+ color : " #30638e"
53
+ # color: "#8c1515" # primary color for header, buttons
53
54
54
55
# Build settings
55
56
markdown : kramdown
Original file line number Diff line number Diff line change @@ -206,11 +206,12 @@ and primary.
206
206
207
207
Just for fun, here are all the types:
208
208
209
- {% include alert.html type="tip" content="This is a tip." %}
210
- {% include alert.html type="question" content="This is a question." %}
211
209
{% include alert.html type="warning" content="This is a warning" %}
212
210
{% include alert.html type="danger" content="This alerts danger!" %}
213
211
{% include alert.html type="success" content="This alerts success" %}
212
+ {% include alert.html type="info" content="This is useful information." %}
213
+ {% include alert.html type="primary" content="This is a primary alert" %}
214
+ {% include alert.html type="secondary" content="This is a secondary alert" %}
214
215
215
216
### Quotes
216
217
Original file line number Diff line number Diff line change 1
- < div class ="admonition {{ include.type }} ">
2
- < p class ="admonition-title "> {% if include.title %}{{ include.title }}{% else %}{{ include.type }}{% endif %}</ p >
3
- < p > {{ include.content }}</ p >
1
+ < div class ="alert alert- {{ include.type }}" role =" alert ">
2
+ < h4 class ="alert-heading "> {% if include.title %}{{ include.title }}{% else %}{{ include.type }}{% endif %}</ h4 >
3
+ {{ include.content }}
4
4
</ div >
5
-
You can’t perform that action at this time.
0 commit comments