base.html 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <html>
  2. <head>
  3. <title>{% block title %}diffido{% end %}</title>
  4. <meta charset="utf-8">
  5. <meta content="width=device-width,initial-scale=1,minimal-ui" name="viewport">
  6. <link rel="stylesheet" href="/static/iconfont/material-icons.css">
  7. <link rel="stylesheet" href="/static/css/vue-material.min.css">
  8. <link rel="stylesheet" href="/static/css/themes/default.css">
  9. <script src="/static/js/lodash.min.js"></script>
  10. <script src="/static/js/vue.min.js"></script>
  11. <script src="/static/js/vue-material.min.js"></script>
  12. <script src="/static/js/axios.min.js"></script>
  13. {% block head %}{% end %}
  14. <style>
  15. body {
  16. background-color: white;
  17. padding: 6px;
  18. }
  19. #app {
  20. margin-bottom: 22px;
  21. }
  22. .md-table {
  23. height: 80%;
  24. }
  25. #footer {
  26. text-align: center;
  27. color: white;
  28. display: block;
  29. vertical-align: middle;
  30. min-height: 16px;
  31. left: 0px;
  32. right: 0px;
  33. bottom: 0px;
  34. position: absolute;
  35. background-color: #448aff54;
  36. }
  37. #footer, #footer a {
  38. color: rgba(0, 0, 0, .40);
  39. transition: color 0.5s ease;
  40. }
  41. #footer:hover, #footer:hover a {
  42. color: rgba(0, 0, 0, .87);
  43. }
  44. #footer:hover a {
  45. text-decoration: underline;
  46. }
  47. .md-card {
  48. margin-top: 6px;
  49. }
  50. {% block style %}{% end %}
  51. </style>
  52. </head>
  53. <body>
  54. {% block body %}{% end %}
  55. <md-toolbar md-elevation="0" id="footer">
  56. <span><a href="https://github.com/alberanid/diffido" target="_new">diffido</a> &copy; <a href="http://www.ismito.it/" target="_new">Davide Alberani</a></span>
  57. </md-toolbar>
  58. </body>
  59. </html>