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.
57 lines
1.4 KiB
57 lines
1.4 KiB
|
|
{% extends "base.html" %}
|
|
{% block main %}
|
|
<nav id="nav" class="container">
|
|
{% include 'menu.html' %}
|
|
</nav>
|
|
<div id="auth_buttons">
|
|
{% if not current_user.is_authenticated %}
|
|
<div class="signin">
|
|
<a href="/login">
|
|
<input type="button" name="button" value="Sign in"></input>
|
|
</a>
|
|
</div>
|
|
<div class="signin">
|
|
<a href="/register">
|
|
<input type="button" name="button" value="Register"></input>
|
|
</a>
|
|
</div>
|
|
{% else %}
|
|
<div class="logout">
|
|
<a href="/logout">
|
|
<input type="button" name="button" value="Logout"></input>
|
|
</a>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
<div id="bookshelf">
|
|
{% for id, pubinfo in publications.items() %}
|
|
<div id="{{ id }}" class='book filter {{ pubinfo["Type"] }} {{ pubinfo["Year"] }} {{ pubinfo["License"] }}'>
|
|
<a href='{{ id }}'>
|
|
<table>
|
|
<tbody>
|
|
{%if pubinfo["Image"]%}
|
|
<tr>
|
|
<td colspan="2" class="tdimage">
|
|
<img src="{{ url_for('static', filename='images/image-{0}.jpg'.format(id))}}" alt="">
|
|
</td>
|
|
</tr>
|
|
{% endif %}
|
|
<tr>
|
|
<td class="author">Author/Editor:</td>
|
|
<td>{{ pubinfo["Author"] }}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="title">Title:</td>
|
|
<td>{{ pubinfo["Title"] }}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</a>
|
|
</div>
|
|
{% endfor%}
|
|
</div>
|
|
<script src="{{ url_for('static', filename='js/dropdown.js')}}"></script>
|
|
<script src="{{ url_for('static', filename='js/search.js')}}"></script>
|
|
|
|
{% endblock %}
|
|
|