Skip to content

Commit ffddefd

Browse files
authored
Merge pull request #164 from AKSW/feature/cleanHtmlInterface
Clean HTML Interface
2 parents 6b15886 + dd99264 commit ffddefd

15 files changed

+83
-9429
lines changed

quit/web/modules/endpoint.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
import logging
55
from flask import Blueprint, request, current_app, make_response
6+
from werkzeug.http import parse_accept_header
67
from rdflib import ConjunctiveGraph
78
from quit.conf import Feature
89
from quit import helpers as helpers

quit/web/static/css/bootstrap.min.css.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

quit/web/static/css/yasqe.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

quit/web/static/css/yasr.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

quit/web/static/js/codemirror.js

Lines changed: 0 additions & 9351 deletions
This file was deleted.

quit/web/static/js/yasqe.min.js

Lines changed: 17 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

quit/web/static/js/yasqe.min.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

quit/web/static/js/yasr.min.js

Lines changed: 31 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

quit/web/static/js/yasr.min.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

quit/web/templates/base.html

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,22 @@
44
{%- block html %}
55
<head>
66
{%- block head %}
7-
<title>{% block title %}{{title|default}}{% endblock title %}</title>
7+
<title>{% block title %}{{title|default}}{% endblock title %}</title>
8+
<meta charset="utf-8">
89

910
{%- block metas %}
10-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
11+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
1112
{%- endblock metas %}
1213

1314
{%- block styles %}
1415
<!-- Bootstrap -->
15-
<link rel=stylesheet type=text/css href="{{ url_for('static', filename='css/bootstrap.min.css') }}" />
16-
<link rel=stylesheet type=text/css href="{{ url_for('static', filename='css/font-awesome.min.css') }}" />
17-
<link rel=stylesheet type=text/css href="{{ url_for('static', filename='css/quit.css') }}" />
16+
<link rel=stylesheet type=text/css href="{{ url_for('static', filename='css/bootstrap.min.css') }}" />
17+
<link rel=stylesheet type=text/css href="{{ url_for('static', filename='css/font-awesome.min.css') }}" />
18+
<link rel=stylesheet type=text/css href="{{ url_for('static', filename='css/quit.css') }}" />
1819
{%- endblock styles %}
19-
<script type="text/javascript">
20-
var inline_functions = [];
21-
</script>
20+
<script type="text/javascript">
21+
var inline_functions = [];
22+
</script>
2223
{%- endblock head %}
2324
</head>
2425
<body{% block body_attribs %}{% endblock body_attribs %}>

0 commit comments

Comments
 (0)