-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update to Bootstrap 5.3.3 * Remove support for python 3.9
- Loading branch information
Showing
12 changed files
with
28 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,6 @@ __pycache__/ | |
.Python | ||
build/ | ||
develop-eggs/ | ||
dist/ | ||
downloads/ | ||
eggs/ | ||
.eggs/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file removed
BIN
-128 KB
ram/portal/static/[email protected]/font/fonts/bootstrap-icons.woff2
Binary file not shown.
8 changes: 4 additions & 4 deletions
8
[email protected]/font/bootstrap-icons.css → [email protected]/font/bootstrap-icons.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
6 changes: 6 additions & 0 deletions
6
ram/portal/static/[email protected]/dist/css/bootstrap.min.css
Large diffs are not rendered by default.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
ram/portal/static/[email protected]/dist/css/bootstrap.min.css.map
Large diffs are not rendered by default.
Oops, something went wrong.
7 changes: 7 additions & 0 deletions
7
ram/portal/static/[email protected]/dist/js/bootstrap.bundle.min.js
Large diffs are not rendered by default.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
ram/portal/static/[email protected]/dist/js/bootstrap.bundle.min.js.map
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,11 +16,11 @@ | |
<link rel="icon" href="{% static "favicon.png" %}" sizes="any"> | ||
<link rel="icon" href="{% static "favicon.svg" %}" type="image/svg+xml"> | ||
{% if site_conf.use_cdn %} | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected].2/dist/css/bootstrap.min.css" rel="stylesheet"> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected].1/font/bootstrap-icons.css" rel="stylesheet"> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected].3/dist/css/bootstrap.min.css" rel="stylesheet"> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected].3/font/bootstrap-icons.css" rel="stylesheet"> | ||
{% else %} | ||
<link href="{% static "[email protected].2/dist/css/bootstrap.min.css" %}" rel="stylesheet"> | ||
<link href="{% static "[email protected].1/font/bootstrap-icons.css" %}" rel="stylesheet"> | ||
<link href="{% static "[email protected].3/dist/css/bootstrap.min.css" %}" rel="stylesheet"> | ||
<link href="{% static "[email protected].3/font/bootstrap-icons.css" %}" rel="stylesheet"> | ||
{% endif %} | ||
<link href="{% static "css/main.css" %}?v={{ site_conf.version }}" rel="stylesheet"> | ||
<style> | ||
|
@@ -216,9 +216,9 @@ <h1 class="fw-light">{{ title }}</h1> | |
</main> | ||
{% include 'includes/footer.html' %} | ||
{% if site_conf.use_cdn %} | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected].2/dist/js/bootstrap.bundle.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected].3/dist/js/bootstrap.bundle.min.js"></script> | ||
{% else %} | ||
<script src="{% static "[email protected].2/dist/js/bootstrap.bundle.min.js" %}"></script> | ||
<script src="{% static "[email protected].3/dist/js/bootstrap.bundle.min.js" %}"></script> | ||
{% endif %} | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from ram.utils import git_suffix | ||
|
||
__version__ = "0.11.0" | ||
__version__ = "0.11.1" | ||
__version__ += git_suffix(__file__) |