First commit
This commit is contained in:
commit
ed9566d057
76 changed files with 4005 additions and 0 deletions
35
templates/publications.html
Normal file
35
templates/publications.html
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
{% extends 'base.html' %}
|
||||
|
||||
{% block title %}Yan Lin's Publications{% endblock %}
|
||||
|
||||
{% block header_title %}Yan Lin's Publications{% endblock %}
|
||||
|
||||
{% block navigation %}
|
||||
<!-- {% include 'partials/navigation.html' %} -->
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<article class="section mt-4">
|
||||
<h2 class="section-title mb-3"><i class="bi bi-star-fill"></i> Primary Publications</h2>
|
||||
<div class="list-group list-group-flush mb-4">
|
||||
{% for pub in data.primaryPublications %}
|
||||
{% with type='primary' %}
|
||||
{% include 'partials/publication.html' %}
|
||||
{% endwith %}
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
<h2 class="section-title mb-3 mt-4"><i class="bi bi-star"></i> Secondary Publications</h2>
|
||||
<div class="list-group list-group-flush">
|
||||
{% for pub in data.secondaryPublications %}
|
||||
{% with type='secondary' %}
|
||||
{% include 'partials/publication.html' %}
|
||||
{% endwith %}
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
<div class="text-start mt-3">
|
||||
<small class="text-muted" style="font-size: 0.8rem;">* Equal Contribution</small>
|
||||
</div>
|
||||
</article>
|
||||
{% endblock %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue