File tree 4 files changed +4
-1
lines changed
4 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -197,6 +197,7 @@ Default global parameters are generated interactively during `composer install`
197
197
- ` app.contact_edit_delay (int) ` Time before a contact is not editable anymore (in minutes)
198
198
- ` app.min_tag (int) ` Minimum number of tag per sharable (0 is none)
199
199
- ` app.max_tag (int) ` Maximum number of tag per sharable (0 is none)
200
+ - ` app.bootswatch_theme (string) ` Name of the [ Bootswatch theme] ( https://bootswatch.com/ ) to load (in lowercase)
200
201
201
202
### Administration
202
203
Original file line number Diff line number Diff line change 5
5
siteName : ' %app.site_name%'
6
6
siteDescription : ' %app.site_description%'
7
7
siteAlert : ' %app.site_alert%'
8
+ bootswatchTheme : ' %app.bootswatch_theme%'
8
9
9
10
# fix to look for translations in forms.
10
11
# TODO: Remove when symfony is upgraded to 5.3
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ parameters:
3
3
app.user_limit: 1000
4
4
app.invitation_duration: 24
5
5
app.site_name: 'Antilope'
6
+ app.bootswatch_theme: darkly
6
7
app.sharabe_names:
7
8
en:
8
9
name: sharable
Original file line number Diff line number Diff line change 6
6
<meta name =" description" content =" {% block description %}{{ siteDescription }}{% endblock %}" >
7
7
<meta name =" viewport" content =" width=device-width, initial-scale=1" >
8
8
<!-- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">-->
9
- <link rel =" stylesheet" href =" https://stackpath.bootstrapcdn.com/bootswatch/4.5.2/darkly /bootstrap.min.css" >
9
+ <link rel =" stylesheet" href =" https://stackpath.bootstrapcdn.com/bootswatch/4.5.2/{{ bootswatchTheme }} /bootstrap.min.css" >
10
10
<link rel =" stylesheet" href =" https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css" integrity =" sha512-HK5fgLBL+xu6dm/Ii3z4xhlSUyZgTT9tuc/hSrtw6uzJOvgRr2a9jyxxT1ely+B+xFAmJKVSTbpM/CuL7qxO8w==" crossorigin =" anonymous" />
11
11
<link rel =" stylesheet" href =" {{ asset(' /antilope.css' ) }}" />
12
12
{% block stylesheets %}
You can’t perform that action at this time.
0 commit comments