30 lines
863 B
HTML
30 lines
863 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">
|
|
<div>
|
|
<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)}}">{{prettify_string(pub)}}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
<iframe class="home_pad_iframe" src="{{ home_pad_url }}"></iframe>
|
|
</div>
|
|
</body>
|
|
</html>
|