2018-01-16 22:24:30 +01:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>{% block title %}diffido{% end %}</title>
|
2018-01-17 22:54:06 +01:00
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta content="width=device-width,initial-scale=1,minimal-ui" name="viewport">
|
2018-01-26 13:22:55 +01:00
|
|
|
<link rel="stylesheet" href="/static/iconfont/material-icons.css">
|
2018-01-17 22:54:06 +01:00
|
|
|
<link rel="stylesheet" href="/static/css/vue-material.min.css">
|
|
|
|
<link rel="stylesheet" href="/static/css/themes/default.css">
|
2018-01-20 14:56:34 +01:00
|
|
|
<script src="/static/js/lodash.min.js"></script>
|
2018-01-26 13:22:55 +01:00
|
|
|
<script src="/static/js/vue.min.js"></script>
|
2018-01-17 22:54:06 +01:00
|
|
|
<script src="/static/js/vue-material.min.js"></script>
|
2018-01-18 22:46:48 +01:00
|
|
|
<script src="/static/js/axios.min.js"></script>
|
2018-01-25 23:53:09 +01:00
|
|
|
{% block head %}{% end %}
|
2018-01-27 11:48:40 +01:00
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
background-color: white;
|
|
|
|
padding: 6px;
|
|
|
|
}
|
|
|
|
|
2018-01-29 21:57:54 +01:00
|
|
|
#app {
|
|
|
|
margin-bottom: 22px;
|
|
|
|
}
|
|
|
|
|
2018-01-27 11:48:40 +01:00
|
|
|
.md-table {
|
|
|
|
height: 80%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#footer {
|
|
|
|
text-align: center;
|
|
|
|
color: white;
|
|
|
|
display: block;
|
|
|
|
vertical-align: middle;
|
|
|
|
min-height: 16px;
|
|
|
|
left: 0px;
|
|
|
|
right: 0px;
|
|
|
|
bottom: 0px;
|
|
|
|
position: absolute;
|
|
|
|
background-color: #448aff54;
|
|
|
|
}
|
|
|
|
|
|
|
|
#footer, #footer a {
|
|
|
|
color: rgba(0, 0, 0, .40);
|
|
|
|
transition: color 0.5s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
#footer:hover, #footer:hover a {
|
|
|
|
color: rgba(0, 0, 0, .87);
|
|
|
|
}
|
|
|
|
|
|
|
|
#footer:hover a {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
2018-01-29 21:57:54 +01:00
|
|
|
.md-card {
|
|
|
|
margin-top: 6px;
|
|
|
|
}
|
|
|
|
|
2018-01-27 11:48:40 +01:00
|
|
|
{% block style %}{% end %}
|
|
|
|
</style>
|
2018-01-16 22:24:30 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{% block body %}{% end %}
|
2018-01-27 11:48:40 +01:00
|
|
|
<md-toolbar md-elevation="0" id="footer">
|
2018-01-27 11:55:45 +01:00
|
|
|
<span><a href="https://github.com/alberanid/diffido" target="_new">diffido</a> © <a href="http://www.ismito.it/" target="_new">Davide Alberani</a></span>
|
2018-01-27 11:48:40 +01:00
|
|
|
</md-toolbar>
|
2018-01-16 22:24:30 +01:00
|
|
|
</body>
|
|
|
|
</html>
|