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.

26 lines
490 B

  1. {% extends "base.html" %}
  2. {% set active_page = "handbook" %}
  3. {% block title %}ACKS Handbook{% endblock %}
  4. {% block content %}
  5. <div id="frame-container">
  6. <iframe id="handbook-frame" src="https://atr0phy.net/acks/handbook"/>
  7. </div>
  8. {% endblock %}
  9. {% block head %}
  10. <style>
  11. #frame-container {
  12. display: flex;
  13. width: 100%;
  14. height: 85vh;
  15. flex-direction: column:
  16. }
  17. #handbook-frame {
  18. flex-grow: 1;
  19. border: none;
  20. margin: 0;
  21. padding: 0;
  22. }
  23. </style>
  24. {% endblock %}