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
26 lines
490 B
{% extends "base.html" %}
|
|
{% set active_page = "handbook" %}
|
|
|
|
{% 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 %}
|