forked from I2P_Developers/i2p.www
Implemented BibTeX viewing
This commit is contained in:
17
i2p2www/pages/papers/bibtex.html
Normal file
17
i2p2www/pages/papers/bibtex.html
Normal file
@@ -0,0 +1,17 @@
|
||||
{% extends "global/layout.html" %}
|
||||
{% block title %}{{ bib.title }}: BibTeX{% endblock %}
|
||||
{% block headextra %}
|
||||
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='styles/pubs.css') }}" />
|
||||
{% endblock %}
|
||||
{% block content %}
|
||||
<table cellspacing="15" border="0" align="center" width="100%%">
|
||||
{% for entry in bib.entries %}
|
||||
<tr><td class='bibtex'>
|
||||
<a name='{{ entry.key }}'>{{ entry.key }}</a>
|
||||
<pre class='bibtex'>
|
||||
{{ entry.format(90,8,1) }}
|
||||
</pre>
|
||||
</td></tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
{% endblock %}
|
Reference in New Issue
Block a user