Skip to content

Commit

Permalink
Have base maas GUI template use new CSS standard.
Browse files Browse the repository at this point in the history
Moving base maas config html template to use css/master.css instead of
common/css/base.css for consistent presentation.
  • Loading branch information
robertbartel authored and christophertubbs committed Sep 6, 2024
1 parent e90e5cf commit 70349c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/gui/MaaS/templates/base.html
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{{ title|default:"Distributed Model on Demand" }}</title>
{% load static %}
<link rel="shortcut icon" type="image/png" href="{% static 'common/img/favicon.png' %}"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<link rel="stylesheet" href="{% static 'common/css/base.css' %}"/>
<link rel="stylesheet" href="{% static 'css/master.css' %}"/>
{% block styles %}{% endblock styles %}
<script>
var startup_scripts = [];
Expand Down

0 comments on commit 70349c7

Please sign in to comment.