Skip to content

Commit d4a44f9

Browse files
authored
Merge pull request #11 from dasc-lab/feat/news
Feat/news
2 parents 49309e1 + 325208a commit d4a44f9

File tree

10 files changed

+85
-21
lines changed

10 files changed

+85
-21
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
layout: news
3+
title: "IEEE TCAC Best Student Paper Award"
4+
date: 2024-07-14
5+
---
6+
7+
Our paper ["Sensor-based Planning and Control for Robotic Systems: Introducing Clarity and Perceivability"](/papers/2023-perceivability) has won the IEEE Technical Committee on Aerospace Controls (TCAC) best paper award.

layouts/_default/list.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,15 @@ <h1>{{ .Title }}</h1>
99

1010
<div class="row align-items-top mt-3">
1111
<div class="col-md-3 mb-2">
12+
<p>{{ .Date | time.Format ":date_medium" }}</p>
1213
<a href="{{ .RelPermalink }}">
14+
{{ if .Params.image }}
1315
<img
1416
class="img-thumbnail img-fluid"
1517
src="{{ .Params.image}}"
1618
alt="project image"
1719
/>
20+
{{ end }}
1821
</a>
1922
</div>
2023

layouts/index.html

Lines changed: 37 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,43 @@
11
{{ define "main" }}
22

3-
<div id="home-jumbotron" class="jumbotron text-center">
3+
<div class="text-center">
44
<h1>{{ .Site.Title }}</h1>
5-
<p class="font-125">{{ .Site.Params.homeText | markdownify }}</p>
5+
<p>{{ .Site.Params.homeText | markdownify }}</p>
6+
</div>
7+
8+
<div id="description" class="py-3">
9+
<p>
10+
The Distributed Autonomous Systems and Control Laboratory (3010 Ford Robotics Building) is directed by Dimitra Panagou.</p>
11+
12+
<p>The lab's research focuses on the exploration, development and implementation of control and estimation methods to address real-world problems in robotics via provably-correct solutions. We are particularly interested in multi-agent systems operating in uncertain environments (e.g., unstructured and/or adversarial).</p>
13+
14+
<p>If you are interested to join our lab, get in touch with Prof Panagou or some of the lab members. </p>
15+
16+
</div>
17+
18+
<div class="py-3">
19+
<a href="/news"><h3>News</h3></a>
20+
<ul>
21+
{{ range first 5 (where .Site.RegularPages "Type" "news") }}
22+
<li> {{ .Date | time.Format ":date_medium" }}: <a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
23+
{{end}}
24+
</ul>
25+
<a href="/news">
26+
See more
27+
<i class="bi-arrow-right"></i>
28+
</a>
29+
30+
</div>
31+
32+
<div class="py-3">
33+
<a href="/papers"><h3>Recent Publications</h3> </a>
34+
{{ range first 3 (where .Site.RegularPages "Type" "papers") }}
35+
{{ partial "paper-card" . }}
36+
{{end}}
37+
<a href="/papers">
38+
See more
39+
<i class="bi-arrow-right"></i>
40+
</a>
641
</div>
742

843
{{ end }}

layouts/papers/list.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ <h1>{{ .Title }}</h1>
66
<p class="d-none"> Rendered from layouts/papers/list </p>
77

88
{{ range .Pages.ByPublishDate.Reverse.GroupByDate "2006" }}
9-
<div class="mt-3">
9+
<div class="py-3">
1010
<h3> {{ .Key }} </h3>
1111
{{ range .Pages }}
1212
{{ partial "paper-card" . }}

layouts/partials/paper-card.html

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,18 @@
11
<div class="row align-items-top mt-3">
2-
<div class="col-md-3 mb-2">
2+
<div class="col-7 col-md-3 mb-2">
33
<a href="{{ .RelPermalink }}">
44
{{ if .Params.image }}
55
<img
66
class="img-thumbnail img-fluid"
77
src="{{ .Params.image}}"
88
alt="{{ .Title }}"
99
/>
10-
{{ else }}
11-
<img
12-
class="img-thumbnail img-fluid"
13-
src="/images/default_paper.png"
14-
alt="{{ .Title }}"
15-
/>
1610
{{ end }}
1711
</a>
1812
</div>
1913

20-
<div class="col-md-9">
21-
<a href="{{ .RelPermalink }}"> <h5>{{ .Title }}</h5></a>
14+
<div class="col-12 col-md-9">
15+
<a class="no-underline" href="{{ .RelPermalink }}"> <h5>{{ .Title }}</h5></a>
2216

2317
<!-- AUTHOR LIST -->
2418
<div class="author-list">

layouts/partials/person-card.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<div class="card h-100" style="width: 18rem;">
1+
<div class="card">
22
<a href="{{ .RelPermalink }}">
33
{{ if .Params.image }}
44
<img src="{{ .Params.image }}" class="card-img-top" alt="{{ .Title }}">

layouts/partials/scripts.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1+
<!-- bootstrap -->
12
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
3+
4+
<!-- bootstrap icons -->
5+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css">

layouts/partials/style.html

Lines changed: 22 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,23 +14,40 @@
1414
max-width: 100%;
1515
}
1616
17+
a:hover {
18+
text-decoration-color: rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,0.85));
19+
color: var(--bs-link-hover-color-rgb);
20+
}
21+
22+
a {
23+
/* color: inherit; */
24+
color: var(--bs-link-color-rgb);
25+
text-decoration: underline;
26+
text-decoration-color: rgba(var(--bs-body-color-rgb),var(--bs-link-opacity,0.5));
27+
text-underline-offset: 0.25em;
28+
}
29+
1730
/* authors list */
1831
1932
.author-list>*:not(:last-child)::after {
2033
content: ", ";
2134
}
2235

23-
.author-list-link {
24-
color: inherit;
25-
text-decoration: none;
26-
}
2736

2837
.author-list-link:hover {
2938
text-decoration: underline;
3039
}
3140

32-
a {
41+
.author-list-link {
3342
color: inherit;
43+
text-decoration: none;
44+
}
45+
46+
47+
48+
49+
.no-underline {
50+
text-decoration: none;
3451
}
3552

3653

layouts/people/people.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ <h1> People</h1>
1515
{{ $subpages := where $pages "Params.category" $category }}
1616
{{ if $subpages.Len }}
1717
<div class="pt-3">
18-
<h2> {{ $category }} </h2>
19-
<div class="row row-cols-1 row-cols-md-3 g-4 my-2">
18+
<h2>{{ $category }}</h2>
19+
<div class="row row-cols-2 row-cols-md-4 g-4">
2020
{{ range $subpages }}
2121
<div class="col">
2222
{{ partial "person-card" . }}

layouts/people/single.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@ <h1>{{ .Title }}</h1>
44

55
<p class="d-none"> Rendered from /layouts/people/single.html </p>
66

7-
{{ partial "person-card" . }}
7+
<div class="row">
8+
<div class="col-6 col-md-3">
9+
{{ partial "person-card" . }}
10+
</div>
11+
</div>
812

913
{{ .Content }}
1014

0 commit comments

Comments
 (0)