38 lines
1.1 KiB
HTML
Executable File
38 lines
1.1 KiB
HTML
Executable File
---
|
|
---
|
|
<div class="my-2 mx-6">
|
|
<h4 class="title is-4 my-3">{{entry.title}}</h4>
|
|
|
|
{{ reference }}
|
|
<div id="{{key}}-materials" class="my-2">
|
|
{% if entry.abstract %}
|
|
<button class="button" data-toggle="collapse" onclick="showHide('{{key}}-abstract');">Abstract</button>
|
|
{% endif %}
|
|
|
|
<button class="button" data-toggle="collapse" onclick="showHide('{{key}}-bibtex');">BibTeX</button>
|
|
|
|
{% if link %}
|
|
<button class="button is-link">
|
|
<a class="has-text-white-ter" style='text-decoration: none;' target='{{link}}' href="https://alice.ufsj.edu.br/{{link}}">
|
|
Download
|
|
</a>
|
|
</button>
|
|
{% endif %}
|
|
{% if entry.doi %}
|
|
<button class="button is-primary">
|
|
<a style='text-decoration: none;' target='{{link}}' href="http://dx.doi.org/{{entry.doi}}">
|
|
DOI
|
|
</a>
|
|
</button>
|
|
{% endif %}
|
|
|
|
|
|
{% if entry.abstract %}
|
|
<p id="{{key}}-abstract" class="collapse">{{entry.abstract}}</p>
|
|
{% endif %}
|
|
|
|
<pre id="{{key}}-bibtex" class="collapse">{{entry.bibtex}}</pre>
|
|
|
|
</div>
|
|
</div>
|