First commit
This commit is contained in:
commit
ed9566d057
76 changed files with 4005 additions and 0 deletions
4
templates/partials/blog.html
Normal file
4
templates/partials/blog.html
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
<div class="list-group-item px-0">
|
||||
<a class="mb-1 paper-title blog-link" href="/blog/html/{{ blog.path }}.html">{{ blog.title }}</a> | <span class="paper-title text-muted">{{ blog.badge }}</span>
|
||||
<p class="card-text mb-auto tldr">{{ blog.tldr }}</p>
|
||||
</div>
|
||||
16
templates/partials/navigation.html
Normal file
16
templates/partials/navigation.html
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
<nav class="navbar navbar-expand">
|
||||
<ul class="navbar-nav d-flex justify-content-evenly mx-auto gap-3 gap-md-5">
|
||||
<li class="nav-item">
|
||||
<a class="link nav-link px-0" href="/#publications">Publications</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="link nav-link px-0" href="/#projects">Projects</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="link nav-link px-0" href="/#presentations">Presentations</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="link nav-link px-0" href="/#services">Services</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
13
templates/partials/presentation.html
Normal file
13
templates/partials/presentation.html
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
<div class="list-group-item px-0">
|
||||
<div class="d-flex justify-content-between align-items-center mb-1">
|
||||
<p class="d-inline-block mb-0 venue-name primary-text">
|
||||
{{ presentation.tags|join("<span class='text-muted'> | </span>")|safe }}
|
||||
</p>
|
||||
<div class="d-flex gap-2">
|
||||
{% for name, url in presentation.links.items() %}
|
||||
<a class="link icon-link icon-link-hover paper-link link-secondary" href="{{ url }}" target="_blank" rel="noopener noreferrer">{{ name }}</a>
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
<h5 class="mb-1 paper-title">{{ presentation.title|safe }}</h5>
|
||||
</div>
|
||||
14
templates/partials/project.html
Normal file
14
templates/partials/project.html
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<div class="list-group-item px-0">
|
||||
<div class="d-flex justify-content-between align-items-center mb-1">
|
||||
<p class="d-inline-block mb-0 venue-name {% if type == 'primary' %}primary-text{% else %}secondary-text{% endif %}">
|
||||
{{ project.tags|join("<span class='text-muted'> | </span>")|safe }}
|
||||
</p>
|
||||
<div class="d-flex gap-2">
|
||||
{% for name, url in project.links.items() %}
|
||||
<a class="link icon-link icon-link-hover paper-link link-secondary" href="{{ url }}" target="_blank" rel="noopener noreferrer">{{ name }}</a>
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
<h5 class="mb-1 paper-title">{{ project.title|safe }}</h5>
|
||||
<p class="card-text mb-auto project-desc">{{ project.desc|safe }}</p>
|
||||
</div>
|
||||
14
templates/partials/publication.html
Normal file
14
templates/partials/publication.html
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<div class="list-group-item px-0">
|
||||
<div class="d-flex justify-content-between align-items-center mb-1">
|
||||
<p class="d-inline-block mb-0 venue-name {% if type == 'primary' %}primary-text{% else %}secondary-text{% endif %}">
|
||||
{{ pub.tags|join("<span class='text-muted'> | </span>")|safe }}
|
||||
</p>
|
||||
<div class="d-flex gap-2">
|
||||
{% for name, url in pub.links.items() %}
|
||||
<a class="link icon-link icon-link-hover paper-link link-secondary" href="{{ url }}" target="_blank" rel="noopener noreferrer">{{ name }}</a>
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
<h5 class="mb-1 paper-title">{{ pub.title|safe }}</h5>
|
||||
<p class="card-text mb-auto author-name">{{ pub.authors|safe }}</p>
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue