base.html 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. .md-table {
  20. height: 80%;
  21. }
  22. #footer {
  23. text-align: center;
  24. color: white;
  25. display: block;
  26. vertical-align: middle;
  27. min-height: 16px;
  28. left: 0px;
  29. right: 0px;
  30. bottom: 0px;
  31. position: absolute;
  32. background-color: #448aff54;
  33. }
  34. #footer, #footer a {
  35. color: rgba(0, 0, 0, .40);
  36. transition: color 0.5s ease;
  37. }
  38. #footer:hover, #footer:hover a {
  39. color: rgba(0, 0, 0, .87);
  40. }
  41. #footer:hover a {
  42. text-decoration: underline;
  43. }
  44. {% block style %}{% end %}
  45. </style>
  46. </head>
  47. <body>
  48. {% block body %}{% end %}
  49. <md-toolbar md-elevation="0" id="footer">
  50. <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>
  51. </md-toolbar>
  52. </body>
  53. </html>