generated from alshedivat/al-folio
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.liquid
53 lines (45 loc) · 1.25 KB
/
about.liquid
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
---
layout: default
---
<div class="post">
<!-- Centered Logo Image with Space -->
<div style="text-align: center; margin-bottom: 20px;">
<img src="assets/img/logo.png" alt="Logo" style="max-width: 200px;">
<!-- Lab Name Title -->
<h1>Learning for Intelligent Robotic Agents</h1>
</div>
<!-- Main Content -->
<article>
<!-- About the Lab -->
<div class="about-lab">
<p>{{ page.labs_about }}</p>
</div>
{{ content }}
</article>
<!-- News -->
{% if page.news and site.announcements.enabled %}
<h2>
<a href="{{ '/news/' | relative_url }}" style="color: inherit">news</a>
</h2>
{% include news.liquid limit=true %}
{% endif %}
<!-- Selected papers -->
{% if page.selected_papers %}
<h2>
<a href="{{ '/publications/' | relative_url }}" style="color: inherit">selected publications</a>
</h2>
{% include selected_papers.liquid %}
{% endif %}
<!-- Physical Address -->
{% if page.physical_address %}
<div class="physical-address" style="text-align: center;">
<p>{{ page.physical_address }}</p>
</div>
{% endif %}
<!-- Social -->
{% if page.social %}
<div class="social">
<div class="contact-icons">{% include social.liquid %}</div>
</div>
{% endif %}
</div>