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

{% extends "base.html" %}
{% block title %}ACKS Handbook{% endblock %}
{% block content %}
<div id="frame-container">
<iframe id="handbook-frame" src="https://atr0phy.net/acks/handbook"/>
</div>
{% endblock %}
{% block head %}
<style>
#frame-container {
display: flex;
width: 100%;
height: 85vh;
flex-direction: column:
}
#handbook-frame {
flex-grow: 1;
border: none;
margin: 0;
padding: 0;
}
</style>
{% endblock %}