lepa_octomode/templates/start.html
2026-01-29 14:16:17 +01:00

28 lines
813 B
HTML

<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset="utf-8" />
<title>octomode</title>
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='main.css') }}">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
</style>
</head>
<body class="start-page">
<form action="{{ url_for('index') }}" method="POST">
<h1><input type="submit" value="open"> <input type="text" name="name"> <em class="octomode">in octomode</em></h1>
</form>
<div class="cols">
<h2>Publications</h2>
<p>Below a list of the publications on the server.</p>
<ul>
{% for pub in pubs %}
<li><a href="{{ url_for('pdf',name=pub)}}">{{pub}}</a></li>
{% endfor %}
</ul>
<iframe class="home_pad_iframe" src="{{ home_pad_url }}"></iframe>
</div>
</body>
</html>