Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SWIFTweb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SWIFT
SWIFTweb
Commits
c79ff99b
Commit
c79ff99b
authored
7 years ago
by
Matthieu Schaller
Browse files
Options
Downloads
Patches
Plain Diff
Added a field for people's expertise on the contact page.
parent
9e9662ee
No related branches found
No related tags found
1 merge request
!6
Added a field for people's expertise on the contact page.
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
data/contact.yaml
+8
-7
8 additions, 7 deletions
data/contact.yaml
templates/contact.html
+6
-3
6 additions, 3 deletions
templates/contact.html
with
14 additions
and
10 deletions
data/contact.yaml
+
8
−
7
View file @
c79ff99b
...
...
@@ -8,21 +8,22 @@ people: [
{
name
:
Dr. Pedro Gonnet
,
role
:
Project PI (CompSci)
,
affil
:
"
School
of
Engineering
&
Computer
Science
,
Durham
University"
affil
:
"
ECS
,
Durham
University"
},
{
name
:
Dr. Aidan Chalk
,
role
:
"
Developer
(Parallelization,
GPU)
"
,
affil
:
"
STFC
Daresbury
Laboratory
,
Warrington
"
role
:
"
Developer"
,
affil
:
"
STFC
Daresbury
Laboratory"
},
{
name
:
Mr. James S. Willis
,
role
:
"
Developer
(Vectorization,
MPI)
"
,
role
:
"
Developer"
,
affil
:
"
ICC,
Durham
University"
,
expertise
:
"
Parallelization,
Vectorization"
},
{
name
:
Dr. Peter Draper
,
role
:
"
Developer
(Parallelization,
MPI,
domain
decomposition)
"
,
role
:
"
Developer"
,
affil
:
"
ICC,
Durham
University"
,
},
{
...
...
@@ -33,8 +34,8 @@ people: [
},
{
name
:
Dr. Bert Vandenbroucke
,
role
:
"
Developer
(Astrophysics,
Hydrodynamics)
"
,
affil
:
"
School
of
Physics
&
Astronomy,
Univer
i
sty
of
St
Andrews"
,
role
:
"
Developer"
,
affil
:
"
Univers
i
ty
of
St
Andrews"
,
href
:
"
http://www-star.st-and.ac.uk/~bv7/"
},
{
...
...
This diff is collapsed.
Click to expand it.
templates/contact.html
+
6
−
3
View file @
c79ff99b
...
...
@@ -25,9 +25,12 @@
<a
href=
"{{ person.href }}"
>
{{ person.name }}
</a>
{% else %}
{{ person.name }}
{% endif %}
{% if person.role %} | {{ person.role }}{% endif %}
{% if person.affil %} | {{ person.affil }}{% endif %}
{% endif %}
{% if person.role %} | {{ person.role }}{% endif %}
<ul>
<li>
{% if person.affil %} {{ person.affil }}{% endif %}
</li>
{% if person.expertise %}
<li>
{{ person.expertise }}
</li>
{% endif %}
</ul>
</li>
{% endfor %}
</ul>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment