-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
171 additions
and
67 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
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
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
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
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 |
---|---|---|
|
@@ -33,10 +33,8 @@ | |
{% endif %} | ||
|
||
{% block head_javascript %} | ||
|
||
<!-- Critical Javascript includes --> | ||
{# NOTE: The rest are included under the "javascript" block at the end #} | ||
|
||
<!-- Iconify SVG icons --> | ||
<script type="text/javascript" src="{% url 'config.js' %}"></script> | ||
<script type="text/javascript" src="{% static 'projectroles/js/iconify.min.js' %}"></script> | ||
|
@@ -46,17 +44,14 @@ | |
<!--[if lt IE 9]> | ||
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script> | ||
<![endif]--> | ||
|
||
<!-- JQuery --> | ||
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script> | ||
|
||
<!-- Required by Bootstrap v4 --> | ||
<!--<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>--> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script> | ||
<!-- Shepherd --> | ||
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.4/js/tether.js"></script> | ||
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/shepherd/1.8.1/js/shepherd.min.js"></script> | ||
|
||
<!-- Clipboard helper --> | ||
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/2.0.0/clipboard.min.js"></script> | ||
{% endif %} | ||
|
@@ -65,68 +60,52 @@ | |
{% for js_inc in custom_js_includes %} | ||
<script type="text/javascript" src="{{ js_inc }}"></script> | ||
{% endfor %} | ||
|
||
{% endblock head_javascript %} | ||
|
||
{% block css %} | ||
|
||
<!-- CSS includes --> | ||
|
||
<!-- Fix for pull-right/pull-left bug when including imports --> | ||
<style type="text/css"> | ||
.pull-right { | ||
float: right; | ||
} | ||
|
||
.pull-left { | ||
float: left; | ||
} | ||
</style> | ||
|
||
{% if not disable_cdn_includes %} | ||
<!-- Bootstrap 4 CSS --> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous"> | ||
|
||
{% endif %} | ||
|
||
{# Custom CSS includes #} | ||
{% for css_inc in custom_css_includes %} | ||
<link rel="stylesheet" type="text/css" href="{{ css_inc }}" /> | ||
{% endfor %} | ||
|
||
<!-- Local CSS Includes --> | ||
|
||
<!-- Shepherd theme --> | ||
<link rel="stylesheet" type="text/css" href="{% static 'projectroles/css/shepherd-theme-sodar.css' %}" /> | ||
|
||
<!-- Projectroles custom CSS --> | ||
<link rel="stylesheet" type="text/css" href="{% static 'projectroles/css/projectroles.css' %}" /> | ||
|
||
<!-- Project CSS --> | ||
<link rel="stylesheet" type="text/css" href="{% static 'css/project.css' %}" /> | ||
|
||
{% endblock css %} | ||
|
||
{% block head_extend %} | ||
{# Extended head stuff from apps goes here #} | ||
{% endblock head_extend %} | ||
</head> | ||
|
||
<body> | ||
|
||
<div class="sodar-base-container" id="sodar-base-container"> | ||
|
||
<div class="sodar-top-container" id="sodar-top-container"> | ||
{# Projectroles site title bar #} | ||
{% include 'projectroles/_site_titlebar.html' %} | ||
</div> <!-- /sodar-top-container --> | ||
|
||
<div class="sodar-content-container" id="sodar-content-container"> | ||
{% block content %} | ||
<p>Use this document as a way to quick start any new project.</p> | ||
{% endblock content %} | ||
</div> <!-- /sodar-content-container --> | ||
|
||
</div> <!-- /sodar-base-container --> | ||
|
||
{# Custom template for Bootstrap4 modal #} | ||
|
@@ -142,14 +121,10 @@ | |
{% get_django_setting name='PROJECTROLES_BROWSER_WARNING' js=True as browser_warning %} | ||
window.sodarBrowserWarning = {{ browser_warning }}; | ||
</script> | ||
|
||
<!-- General project Javascript --> | ||
<script type="text/javascript" src="{% static 'js/project.js' %}"></script> | ||
|
||
<!-- App alerts Javascript --> | ||
{% include 'projectroles/_appalerts_include.html' %} | ||
{% endblock javascript %} | ||
|
||
</body> | ||
|
||
</html> |
Oops, something went wrong.