You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
905 B

2 years ago
2 years ago
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <title>DWalker Website</title>
  8. <meta
  9. name="description"
  10. content="A website for aggregating and searching exposome data"
  11. />
  12. <link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css" />
  13. </head>
  14. <body>
  15. <header>
  16. <nav>
  17. <a href="{{ url_for('home') }}">Home</a>
  18. <a href="{{ url_for('search') }}">Search</a>
  19. {% if session.user %}
  20. <a href="{{ url_for('admin_root') }}">Dashboard</a>
  21. <a href="{{ url_for('logout') }}">Logout</a>
  22. {% else %}
  23. <a href="{{ url_for('login') }}">Login</a>
  24. {% endif %}
  25. </nav>
  26. </header>
  27. <main>{% block content %} {% endblock %}</main>
  28. </body>
  29. </html>