Update website
This commit is contained in:
parent
4413528994
commit
1d90fbf296
6865 changed files with 1091082 additions and 0 deletions
19
views/partials/papers.mustache
Normal file
19
views/partials/papers.mustache
Normal file
|
@ -0,0 +1,19 @@
|
|||
<div class="row" data-bind="visible: paper_list">
|
||||
List of papers in the database:
|
||||
<div class="mb-0" data-bind="foreach: papers" class="list-group papers">
|
||||
<span class="list-group-item list-group-item-action" data-bind="visible: ($data.owned() || $root.show_all_papers)">
|
||||
<span class="label_ads">ADS id: </span><span data-bind="text: ads"></span><br/>
|
||||
<span class="label_title">Title:</span> <span data-bind="text: title"></span><br/>
|
||||
<span class="label_authors">Authors:</span>
|
||||
<span data-bind="foreach: authors"><span class="author" data-bind="text: $data"></span>; </span><br/>
|
||||
<!--ko if: $data['journal'] --> <span class="label_journal">Journal:</span> <span data-bind="text: journal"></span><br/> <!--/ko-->
|
||||
<!--ko if: $data['arxiv'] --> <a class="label_arxiv" data-bind="attr: { href: ('https://arxiv.org/abs/' + $data['arxiv'])}">arXiV: <span data-bind="text: arxiv"></span></a>
|
||||
<!--/ko-->
|
||||
<!--ko if: $data['doi'] --> <span class="label_arxiv">DOI: <span data-bind="text: doi"></span></span> <!--/ko-->
|
||||
<div class="form-check form-switch">
|
||||
<input class="form-check-input" type="checkbox" role="switch" data-bind="checked: $data.owned">
|
||||
<label class="form-check-label">Owned?</label>
|
||||
</div>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue