base.html 932 B

12345678910111213141516171819202122232425262728
  1. <!doctype html>
  2. <html class="no-js" lang="">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="x-ua-compatible" content="ie=edge">
  6. <title>Emus - EmulationStation Web Interface</title>
  7. <meta name="description" content="">
  8. <meta name="viewport" content="width=device-width, initial-scale=1">
  9. {% block head_extra %}{% endblock %}
  10. <link rel="apple-touch-icon" href="/apple-touch-icon.png">
  11. <!-- Place favicon.ico in the root directory -->
  12. </head>
  13. <body>
  14. <!--[if lt IE 8]>
  15. <p class="browserupgrade">
  16. You are using an <strong>outdated</strong> browser. Please
  17. <a href="http://browsehappy.com/">upgrade your browser</a> to improve
  18. your experience.
  19. </p>
  20. <![endif]-->
  21. <h1>{% block title %}{% endblock %}</h1>
  22. {% block content %}
  23. {% endblock %}
  24. </body>
  25. </html>