Closing html tags for links properly

This commit is contained in:
Mike Terzo
2016-12-23 03:53:18 -05:00
parent ff409c5f6d
commit 0e712da71f
2 changed files with 4 additions and 4 deletions

View File

@@ -13,10 +13,10 @@
}
</style>
{% else %}
<link href='//fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<link href='//fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css' />
{% endif %}
<link href="{{ url_for('static', filename='Semantic-UI-2.1.8/semantic.min.css') }}" rel="stylesheet">
<link href="{{ url_for('static', filename='css/puppetboard.css') }}" rel="stylesheet">
<link href="{{ url_for('static', filename='Semantic-UI-2.1.8/semantic.min.css') }}" rel="stylesheet" />
<link href="{{ url_for('static', filename='css/puppetboard.css') }}" rel="stylesheet" />
{% block head %} {% endblock head %}
</head>

View File

@@ -2,7 +2,7 @@
{% import '_macros.html' as macros %}
{% block head %}
{% if config.DAILY_REPORTS_CHART_ENABLED %}
<link href="{{ url_for('static', filename='css/c3.min.css') }}" rel="stylesheet">
<link href="{{ url_for('static', filename='css/c3.min.css') }}" rel="stylesheet" />
{% endif %}
{% endblock head %}
{% block content %}