base.html 700 B

12345678910111213141516171819202122
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6. <title>myCar</title>
  7. <link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}"/>
  8. </head>
  9. <body>
  10. <h1> myCar Basis Template </h1>
  11. <hr><br>
  12. <div id="content">{% block content %}{% endblock %}</div>
  13. <div id="footer">
  14. <br>
  15. {% block footer %}
  16. <a href="https://wiki.siningsoft.de/id=mycar:intro">wiki.siningsoft.de</a>.
  17. {% endblock %}
  18. </div>
  19. </body>
  20. </html>