-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from dasc-lab/feat/news
Feat/news
- Loading branch information
Showing
10 changed files
with
85 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
layout: news | ||
title: "IEEE TCAC Best Student Paper Award" | ||
date: 2024-07-14 | ||
--- | ||
|
||
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,43 @@ | ||
{{ define "main" }} | ||
|
||
<div id="home-jumbotron" class="jumbotron text-center"> | ||
<div class="text-center"> | ||
<h1>{{ .Site.Title }}</h1> | ||
<p class="font-125">{{ .Site.Params.homeText | markdownify }}</p> | ||
<p>{{ .Site.Params.homeText | markdownify }}</p> | ||
</div> | ||
|
||
<div id="description" class="py-3"> | ||
<p> | ||
The Distributed Autonomous Systems and Control Laboratory (3010 Ford Robotics Building) is directed by Dimitra Panagou.</p> | ||
|
||
<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> | ||
|
||
<p>If you are interested to join our lab, get in touch with Prof Panagou or some of the lab members. </p> | ||
|
||
</div> | ||
|
||
<div class="py-3"> | ||
<a href="/news"><h3>News</h3></a> | ||
<ul> | ||
{{ range first 5 (where .Site.RegularPages "Type" "news") }} | ||
<li> {{ .Date | time.Format ":date_medium" }}: <a href="{{ .RelPermalink }}">{{ .Title }}</a></li> | ||
{{end}} | ||
</ul> | ||
<a href="/news"> | ||
See more | ||
<i class="bi-arrow-right"></i> | ||
</a> | ||
|
||
</div> | ||
|
||
<div class="py-3"> | ||
<a href="/papers"><h3>Recent Publications</h3> </a> | ||
{{ range first 3 (where .Site.RegularPages "Type" "papers") }} | ||
{{ partial "paper-card" . }} | ||
{{end}} | ||
<a href="/papers"> | ||
See more | ||
<i class="bi-arrow-right"></i> | ||
</a> | ||
</div> | ||
|
||
{{ end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
<!-- bootstrap --> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script> | ||
|
||
<!-- bootstrap icons --> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters