Collective PDF rendering environment (work-in-progress)
https://cc.vvvvvvaria.org/wiki/Octomode
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.
40 lines
1.3 KiB
40 lines
1.3 KiB
<!DOCTYPE html>
|
|
<html lang='en'>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>{{ name }}</title>
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='main.css') }}">
|
|
{% block head %}
|
|
{% endblock %}
|
|
</head>
|
|
<body>
|
|
<div id="wrapper">
|
|
{% block content %}
|
|
{% endblock %}
|
|
</div>
|
|
</body>
|
|
<script>
|
|
window.addEventListener('load', function () {
|
|
|
|
// Insert the nav buttons, after the page is loaded
|
|
const nav = document.createElement('div');
|
|
nav.id = 'nav';
|
|
const name = '{{ name }}';
|
|
|
|
nav.innerHTML = `
|
|
<h1>${ name } <a href="/"><em class="octomode">in octomode</em></a></h1>
|
|
<div id="buttons">
|
|
<a href="/${ name }/pad/"><button>pad</button></a>: <input type="text" name="pad" value="https://pad.vvvvvvaria.org/${ name }.md">
|
|
<a href="/${ name }/stylesheet/"><button>stylesheet</button></a>: <input type="text" name="pad" value="https://pad.vvvvvvaria.org/${ name }.css">
|
|
<a href="/${ name }/template/"><button>template</button></a>: <input type="text" name="pad" value="https://pad.vvvvvvaria.org/${ name }.template">
|
|
<!-- <a href="/${ name }/html/"><button>html</button></a> -->
|
|
<a href="/${ name }/pdf/"><button>pdf</button></a>
|
|
</div>`;
|
|
|
|
document.body.insertBefore(nav, document.body.firstChild);
|
|
|
|
})
|
|
</script>
|
|
{% block footer %}
|
|
{% endblock %}
|
|
</html>
|
|
|