forked from carla-simulator/carla-simulator.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
29 lines (28 loc) · 1.05 KB
/
about.html
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: about
title: About
background: '/img/bg-about.jpg'
---
<div class="text-center" style="display:block;">
{% assign teams = "researchers,programmers,artists,former members" | split: ',' %}
{% for team in teams%}
<h2 class="text-center" style="margin:50px 0 0 0">
{{ team | capitalize }}
</h2>
{% assign team_image = 'img/team/' | append: team %}
{% for image in site.static_files %}
{% if image.path contains team_image %}
{% assign info = image.path | replace: '_', ' ' | remove: '.jpeg' | remove: '.jpg' | remove: '.png' | split: '-' %}
<div style="margin:30px;padding:0;display:inline-block;">
<img src="{{ site.baseurl }}{{ image.path }}" alt="{{ info[1] }}" height="150" width="150"/>
<p class="text-center" style="margin:0;color:#000;font-weight:bold;">
{{ info[1] }}
</p>
<p class="text-center" style="margin:0;color:#999;font-size:15px;">
{{ info[2] }}
</p>
</div>
{% endif %}
{% endfor %}
{% endfor %}
</div>