-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathscience.html
More file actions
29 lines (28 loc) · 1.12 KB
/
science.html
File metadata and controls
29 lines (28 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
---
layout: default
title: Science
---
<div class="center">
<h1>Scientific publications</h1>
<p>The flexibility and versatility of Nutils' toolset makes it the ideal suite
for developing and testing new numerical techniques and formulations. This has
led to an ever growing list of scientific publications in the fields of
computational physics, applied mechanics, biomechanical modelling, marine
engineering, and others. If your Nutils powered publication is not listed below
please send an email to <a href="mailto:info@nutils.org">info@nutils.org</a> to
have it included.
</p>
<div class="columns bwhover">
<dl class="science">
{% for post in site.posts %}
{% if post.pub %}
<dt style="color: gray;">{{ post.date | date: '%b %Y' }}
{% if post.thumb %}<a href="{{ post.url }}"><img src="/thumbs/{{ post.thumb }}.png" width="120" height="120" style="float: right; padding-left: 10px; padding-bottom: 10px;"></a>{% endif %}
</dt><dd style="margin: 0px 0px 10px 2em;">
{{ post.pub.author }}. <a href="{{ post.pub.url }}">{{ post.pub.title }}</a>. {{ post.pub.journal }}.
</dd>
{% endif %}
{% endfor %}
</dl>
</div>
</div>