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.

24 lines
454 B

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