Tools for generating the Volumetric Regimes book https://volumetricregimes.xyz/ (wiki-to-print, using Paged.js)
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.
27 lines
927 B
27 lines
927 B
{% extends "flask/base.html" %}
|
|
|
|
{% block head %}
|
|
<script src="{{ url_for('static', filename='js/paged.js')}}" type="text/javascript"></script>
|
|
<script src="{{ url_for('static', filename='js/paged.polyfill.js')}}" type="text/javascript"></script>
|
|
<link href="{{ url_for('static', filename='css/interface.css')}}" rel="stylesheet" type="text/css">
|
|
<link href="{{ url_for('static', filename='css/print.css')}}" rel="stylesheet" type="text/css" media="print">
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{{ publication_unfolded | safe }}
|
|
{% endblock %}
|
|
|
|
{% block footer %}
|
|
<script>
|
|
window.addEventListener('load', function () {
|
|
|
|
// Add the main.css again, to load the stylesheet for the nav
|
|
var cssLink = document.createElement('link');
|
|
cssLink.rel = 'stylesheet';
|
|
cssLink.href = '/static/css/main.css';
|
|
var head = document.getElementsByTagName('head')[0];
|
|
head.insertBefore(cssLink, head.firstChild);
|
|
|
|
})
|
|
</script>
|
|
{% endblock %}
|
|
|