layout.html 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <title>{% block title %} {{ title }} {% endblock %}</title>
  7. <meta name="description" content="{% block description %}{% endblock %}">
  8. <meta name="author" content="{% block title %} {{ author }} {% endblock %}">
  9. <meta property="og:title" content="{% block title %} {{ title }} {% endblock %}">
  10. <meta property="og:type" content="website">
  11. <meta property="og:url" content="{% block canonical %}{% endblock %}">
  12. <meta property="og:description" content="{% block description %}{% endblock %}">
  13. <meta property="og:image" content="{% block image %}{% endblock %}">
  14. <link rel="icon" href="/fs/favicon.ico">
  15. <link rel="apple-touch-icon" href="/fs/apple-touch-icon.png">
  16. {% block head %}{% endblock %}
  17. </head>
  18. <body>
  19. <nav id="menu">
  20. <div class="row" style="justify-content: center;">
  21. <div class="col-sm-6 col-md-3 col-lg-2 flex-center" style="justify-content: center; text-align: center">
  22. <a title="Landing page" href="/">🏠 Home</a>
  23. </div>
  24. <div class="col-sm-6 col-md-3 col-lg-2 flex-center" style="justify-content: center; text-align: center">
  25. <a title="About Us" href="/">About</a>
  26. </div>
  27. <div class="col-sm-6 col-md-3 col-lg-2 flex-center" style="justify-content: center; text-align: center">
  28. <a title="Contact" href="/">Contact Us</a>
  29. </div>
  30. <div class="col-sm-6 col-md-3 col-lg-2 flex-center" style="justify-content: center; text-align: center">
  31. <a title="Services" href="/">Services</a>
  32. </div>
  33. <div class="col-sm-6 col-md-3 col-lg-2 flex-center" style="justify-content: center; text-align: center">
  34. <a title="Come chat with us directly over matrix about any questions and issues." target="_blank" href="https://matrix.to/#/#SanturceSoftware:matrix.org">Come chat with us directly over matrix about any questions and issues</a>
  35. </div>
  36. </div>
  37. </nav>
  38. <div id="content">
  39. {% block content %}{% endblock %}
  40. </div>
  41. <script async src="/fs/js/app.js"></script>
  42. <link rel="stylesheet" defer href="/fs/css/mini-default.min.css">
  43. <link rel="stylesheet" defer href="/fs/css/styles.css">
  44. </body>
  45. </html>