Skip to content

Commit

Permalink
Fix image references to use {% static %} and add comment on how to in…
Browse files Browse the repository at this point in the history
…crement version number when deploying
  • Loading branch information
RobOatesHistoricEngland committed Oct 14, 2024
1 parent c635b84 commit 3fd9d5d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions arches/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
except ModuleNotFoundError as e:
print(e)

# Change this every time you release a new version
# For example, for Keystone version 1.2.2 use VERSION = (1, 2, 2, "final", 0)
VERSION = (6, 1, 1, "beta", 0) # VERSION[3] options = "alpha", "beta", "rc", or "final"

__version__ = get_version(VERSION)
Expand Down
6 changes: 3 additions & 3 deletions arches/app/media/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -3752,7 +3752,7 @@ a.read-more:hover {
------------------------------------*/
/*Main Parallax Sldier*/
.da-slide h2 i {
background:url(../../plugins/parallax-slider/img/bg-heading-dark-blue.png) repeat;
background:url("{% static '../../plugins/parallax-slider/img/bg-heading-dark-blue.png' %}") repeat;
}

/*Sequence Parallax Sldier*/
Expand Down Expand Up @@ -3834,10 +3834,10 @@ a.read-more:hover {
}

.bx-wrapper .bx-prev {
background-image: url(../../plugins/bxslider/images/controls-dark-blue.png);
background-image: url("{% static '../../plugins/bxslider/images/controls-dark-blue.png' %}");
}
.bx-wrapper .bx-next {
background-image: url(../../plugins/bxslider/images/controls-dark-blue.png);
background-image: url("{% static '../../plugins/bxslider/images/controls-dark-blue.png' %}");
}

/*Typography
Expand Down

0 comments on commit 3fd9d5d

Please sign in to comment.