Skip to content

Commit

Permalink
static: adjust links to static content in base template
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimschmidt557 committed Jun 13, 2024
1 parent 2b006e1 commit 567841c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/templates/d120_base.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
<title>{% block title %}Leere Seite{% endblock %} - Evaluation der Lehre</title>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />

<link rel="stylesheet" type="text/css" href="https://www.fachschaft.informatik.tu-darmstadt.de/static/vendor/bootstrap/dist/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="https://www.fachschaft.informatik.tu-darmstadt.de/static/vendor/font-awesome/css/font-awesome.min.css" />
<link rel="stylesheet" type="text/css" href="https://www.fachschaft.informatik.tu-darmstadt.de/static/vendor/%40fontsource/libre-franklin/index.css" />
<link rel="stylesheet" type="text/css" href="https://www.fachschaft.informatik.tu-darmstadt.de/static/d120/css/custom.css" />
<link rel="stylesheet" type="text/css" href="{% static 'bootstrap/dist/css/bootstrap.min.css' %}" />
<link rel="stylesheet" type="text/css" href="{% static 'font-awesome/css/font-awesome.min.css' %}" />
<link rel="stylesheet" type="text/css" href="{% static '@fontsource/libre-franklin/index.css' %}" />
<link rel="stylesheet" type="text/css" href="{% static 'custom.css' %}" />
<style>
a, footer a:hover, .sidebar-nav a, .sidebar-nav a:hover {
color:#009D81;
Expand Down Expand Up @@ -52,8 +52,8 @@
</div>
{% include 'd120/footer.html' %}
{% block javascript_block %}
<script src="https://www.fachschaft.informatik.tu-darmstadt.de/static/vendor/jquery/dist/jquery.min.js"></script>
<script src="https://www.fachschaft.informatik.tu-darmstadt.de/static/vendor/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="{% static 'jquery/dist/jquery.min.js' %}"></script>
<script src="{% static 'bootstrap/dist/js/bootstrap.min.js' %}"></script>
{% endblock %}
</body>

Expand Down

0 comments on commit 567841c

Please sign in to comment.