Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
protokollsystem
proto3
Commits
473676a5
Commit
473676a5
authored
Mar 31, 2019
by
Robin Sonnabend
Browse files
Add option to get bootstrap and jquery from a cdn
parent
6074e130
Changes
2
Hide whitespace changes
Inline
Side-by-side
configproxy.py
View file @
473676a5
...
...
@@ -472,6 +472,11 @@ CONFIG_SECTIONS = [
required
=
False
,
internal
=
False
,
description
=
"Protocol used by this website. "
"Either 'http' or 'https'."
),
ConfigEntry
(
name
=
"CDN_URL"
,
default
=
None
,
required
=
False
,
internal
=
False
,
description
=
"URL to get bootstrap and jQuery from."
)
],
check
=
check_server_name
,
description
=
"Where is the website hosted"
),
...
...
templates/layout.html
View file @
473676a5
...
...
@@ -5,7 +5,11 @@
<meta
charset=
"utf-8"
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
>
<meta
name=
"description"
content=
"Protokollsystem"
/>
<link
rel=
"stylesheet"
href=
"{{url_for("
static
",
filename=
"css/bootstrap.min.css"
)}}"
>
{% if config.CDN_URL is defined %}
<link
rel=
"stylesheet"
href=
"{{[config.CDN_URL, "
bootstrap
/
css
/
bootstrap.min.css
"]|
join
("/")}}"
>
{% else %}
<link
rel=
"stylesheet"
href=
"{{url_for("
static
",
filename=
"css/bootstrap.min.css"
)}}"
>
{% endif %}
<link
rel=
"stylesheet"
href=
"{{url_for("
static
",
filename=
"css/style.css"
)}}"
/>
{% block additional_js %}
{% endblock %}
...
...
@@ -73,6 +77,11 @@ Diese Seite ist leer.
{% endblock %}
</div>
<script
src=
"{{url_for("
static
",
filename=
"js/jquery.min.js"
)}}"
></script>
<script
src=
"{{url_for("
static
",
filename=
"js/bootstrap.min.js"
)}}"
></script>
{% if config.CDN_URL is defined %}
<script
src=
"{{[config.CDN_URL, "
jquery
/
jquery.min.js
"]|
join
("/")}}"
></script>
<script
src=
"{{[config.CDN_URL, "
bootstrap
/
js
/
bootstrap.min.js
"]|
join
("/")}}"
></script>
{% else %}
<script
src=
"{{url_for("
static
",
filename=
"js/jquery.min.js"
)}}"
></script>
<script
src=
"{{url_for("
static
",
filename=
"js/bootstrap.min.js"
)}}"
></script>
{% endif %}
</body>
Lars Beckers
@larsb
mentioned in issue
#223 (closed)
·
Apr 03, 2019
mentioned in issue
#223 (closed)
mentioned in issue #223
Toggle commit list
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment