Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/docs/fundamentals/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ it with any other code at runtime. For well-known solvers such as OpenFOAM, deal

preCICE is free/open-source software, using the [GNU LGPL3 license](https://www.gnu.org/licenses/lgpl-3.0.en.html). This license ensures the open future of the project, while allowing you to use the library also in closed-source solvers. The code is publicly available and actively developed on [GitHub](https://github.com/precice). See more [license information](fundamentals-license.html).

![Big-picture overview of preCICE](material/overview/precice-overview.png)
![Big-picture overview of preCICE](/material/overview/precice-overview.png)

Writing about preCICE? [Get this image and more material](https://github.com/precice/precice.github.io/tree/master/material).

Expand Down
15 changes: 8 additions & 7 deletions layouts/partials/developer_list.html
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
{{- $group := .group -}}
{{- $people := index hugo.Data.developer $group -}}
{{- with $people }}
<br>
<div class="row">
<div class="col-md-10 offset-md-1">
<ul class="devlist">
<div class="col-lg-10 col-md-12">
<ul class="devlist my-3">
{{- range $index, $person := sort . "name" }}
<li{{ if eq $index 0 }} class="devlist-first"{{ end }}>
{{- with $person.img }}
<div class="devlist-img">
<img src="{{ printf "/images/developer/%s.jpg" . | relURL }}" alt="Portrait">
</div>
{{- if eq $group "main" }}
{{- with $person.img }}
<div class="devlist-img">
<img src="{{ printf "/images/developer/%s.jpg" . | relURL }}" alt="Portrait">
</div>
{{- end }}
{{- end }}
<div class="devlist-left">
<p>
Expand Down