Skip to content

Commit

Permalink
MS: added panel people and updated website layout
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeS96 committed Sep 5, 2024
1 parent d4651df commit 36baeb0
Show file tree
Hide file tree
Showing 33 changed files with 451 additions and 34 deletions.
5 changes: 4 additions & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ header_pages:
- organizers.md
- callforpapers.md
- schedule.md
#- papers.md
# - papers.md
- panel.md
- contactus.md

# # Specify the name of a file to show as a masthead graphic at the top of each page, instead of a title, here:
Expand Down Expand Up @@ -68,6 +69,8 @@ collections:
papers:
sort_by: sequence_id
output: false
panel:
output: true

# Exclude from processing.
# The following items will not be processed, by default.
Expand Down
6 changes: 3 additions & 3 deletions _layouts/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
---

<div class="home">
{%- if page.title -%}
<h1 class="page-heading">{{ page.title }}</h1>
{%- endif -%}
<!-- {%- if page.title -%}
<h1 class="page-heading">{{ page.title }}</h1> -->
<!-- {%- endif -%} -->

{{ content }}

Expand Down
61 changes: 61 additions & 0 deletions _layouts/panel.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
---
layout: default
---

<article class="post">

<header class="post-header">
<h1 class="post-title">{{ page.title | escape }}</h1>
</header>

<div class = "post-content">
<table style="border-collapse: collapse; border: none;">
{% for panellist in site.panel %}
<tr style="border: none;">
<td style="border: none;">
<div class="col-xs-6">
<p align="center">
{% if panellist.img %}
<img class="people-pic" src="{{ panellist.img | prepend: '/assets/img/panel/' | prepend: site.baseurl | prepend: site.url }}" target="_blank">
{% else %}
<img class="people-pic" src="{{ 'avatar.jpg' | prepend: '/assets/img/panel/' | prepend: site.baseurl | prepend: site.url }}" target="_blank">
{% endif %}
</p>
</div>
</td>
<td style="border: none;">
<div class="people-name text-center">
<!-- panel name (link to webpage if provided) -->
{% if panellist.webpage %}
<b><a href="{{ panellist.webpage }}" target="_blank">{{ panellist.name }}</a></b>
{% else %}
<b>{{ panellist.name }}</b>
{% endif %}
<br>
<!-- panel affiliation (if provided) -->
{% if panellist.affil_link %}
<a href="{{ panellist.affil_link }}" target="_blank">{{ panellist.affil }}</a>
{% else %}
{{ panellist.affil }}
{% endif %}
<!-- Additional panel affiliation (if provided) -->
{% if panellist.affil2_link %}
<br>
<a href="{{ panellist.affil2_link }}" target="_blank">{{ panellist.affil2 }}</a>
{% elsif panellist.affil2 %}
<br>
{{ panellist.affil2 }}
{% endif %}
</div>
</td>
<td style="border: none;">
<div class="people-name text-center">
{{ panellist.content }}
</div>
</td>
</tr>
{% endfor %}
</table>
</div>

</article>
24 changes: 24 additions & 0 deletions _panel/Javier.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
# Name of the speaker
name: Javier Civera

# Link to the speaker's webpage
webpage: http://webdiis.unizar.es/~jcivera/

# Primary affiliation of the speaker
affil: SLAM Lab & Robotics, Perception and Real-Time Group
# Link to the speaker's primary affiliation
affil_link: http://robots.unizar.es/slamlab/

# An image of the speaker (square aspect ratio works the best) (place in the `assets/img/panel` directory)
img: Javier.jpeg

# (Optional) Secondary affiliation of the speaker
affil2: Associate Professor at University of Zaragoza
# Link to the speaker's secondary affiliation
affil2_link: https://www.unizar.es/university-zaragoza
---

<!-- Whatever you write below will show up as the speaker's bio -->

Javier Civera is an associate professor at University of Zaragoza and an expert in SLAM. His research interests include Computer Vision and Robotics, specifically Structure from Motion, SLAM and visual recognition.
24 changes: 24 additions & 0 deletions _panel/Milos.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
# Name of the speaker
name: Miloš Prágr

# Link to the speaker's webpage
webpage: https://milospragr.com/

# Primary affiliation of the speaker
affil: Computational Robotics Laboratory
# Link to the speaker's primary affiliation
affil_link: https://comrob.fel.cvut.cz/

# An image of the speaker (square aspect ratio works the best) (place in the `assets/img/panel` directory)
img: Milos.jpeg

# (Optional) Secondary affiliation of the speaker
affil2: Czech Technical University in Prague
# Link to the speaker's secondary affiliation
affil2_link: https://www.cvut.cz/en
---

<!-- Whatever you write below will show up as the speaker's bio -->

Miloš is a Postdoctoral researcher in the Computational Robotics Laboratory Department at the Czech Technical University in Prague. Miloš' research aims to improve the autonomy of mobile robots on long-term, unsupervised missions in outdoor environments. His main focus is on assessing traversability through complex environments, such as terrains whose traversability changes with time or vegetation that appears rigid but can be passed through.
24 changes: 24 additions & 0 deletions _panel/Steven.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
# Name of the speaker
name: Steven Waslander

# Link to the speaker's webpage
webpage: https://www.trailab.utias.utoronto.ca/stevenwaslander

# Primary affiliation of the speaker
affil: University of Toronto Institute for Aerospace Studies
# Link to the speaker's primary affiliation
affil_link: https://www.utias.utoronto.ca/

# An image of the speaker (square aspect ratio works the best) (place in the `assets/img/panel` directory)
img: Steven.png

# (Optional) Secondary affiliation of the speaker
affil2: Toronto Robotics and AI Lab
# Link to the speaker's secondary affiliation
affil2_link: https://www.trailab.utias.utoronto.ca/
---

<!-- Whatever you write below will show up as the speaker's bio -->

Prof. Steven Waslander is a leading authority on autonomous aerial and ground vehicles, including multirotor drones and autonomous driving vehicles. His research interests include Multirotor Drones, Aerial Robotics, Robotic Vision, SLAM, Scan Registration, Motion Planning, Autonomous Driving.
24 changes: 24 additions & 0 deletions _panel/Teresa.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
# Name of the speaker
name: Teresa Vidal Calleja

# Link to the speaker's webpage
webpage: https://profiles.uts.edu.au/Teresa.VidalCalleja

# Primary affiliation of the speaker
affil: Research Director at the Robotics Institute
# Link to the speaker's primary affiliation
affil_link: https://www.uts.edu.au/research/robotics-institute

# An image of the speaker (square aspect ratio works the best) (place in the `assets/img/panel` directory)
img: Teresa.jpeg

# (Optional) Secondary affiliation of the speaker
affil2: Associate Professor School of Mechanical and Mechatronic Engineering at UTS
# Link to the speaker's secondary affiliation
affil2_link: https://www.uts.edu.au/
---

<!-- Whatever you write below will show up as the panellist's bio -->

Teresa Vidal-Calleja is a robotics expert focusing on enabling robots to be deployed in environments that are hazardous or difficult for people to access. Teresa’s research interests include robotics perception, alternative sensing, inertial fusion, SLAM, continuous mapping, aerial and ground robots cooperation, autonomous navigation, automatic recognition, digital engineering, with applications in manufacturing, the meat and livestock sector, mining, and construction and logistics.
6 changes: 3 additions & 3 deletions _site/404.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<meta name="twitter:card" content="summary" />
<meta property="twitter:title" content="Standing the Test of Time Workshop" />
<script type="application/ld+json">
{"headline":"Standing the Test of Time Workshop","@type":"WebPage","url":"http://localhost:4000/404.html","@context":"https://schema.org"}</script>
{"@type":"WebPage","url":"http://localhost:4000/404.html","headline":"Standing the Test of Time Workshop","@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
<link rel="stylesheet" href="/assets/css/style.css"><link type="application/atom+xml" rel="alternate" href="http://localhost:4000/feed.xml" title="Standing the Test of Time Workshop" />
</head>
Expand All @@ -28,7 +28,7 @@
</span>
</label>

<div class="trigger"><a class="page-link" href="/">Standing the Test of Time</a><a class="page-link" href="/speakers/">Speakers</a><a class="page-link" href="/organizers/">Organizers</a><a class="page-link" href="/callforpapers/">Call for Papers</a><a class="page-link" href="/schedule/">Schedule</a><a class="page-link" href="/contactus/">Contact Us</a></div>
<div class="trigger"><a class="page-link" href="/">Home</a><a class="page-link" href="/speakers/">Speakers</a><a class="page-link" href="/organizers/">Organizers</a><a class="page-link" href="/callforpapers/">Call for Papers</a><a class="page-link" href="/schedule/">Schedule</a><a class="page-link" href="/panel/">Panel</a><a class="page-link" href="/contactus/">Contact Us</a></div>
</nav></div>
</header>
<main class="page-content" aria-label="Content">
Expand Down Expand Up @@ -75,7 +75,7 @@ <h1>404</h1>
<p>Website based on a <a href="http://jekyllrb.com/" target="_blank">Jekyll</a> template from a <a href="https://krrish94.github.io">lazy grad student</a>. Some icons made by <a href="https://smashicons.com/" title="Smashicons">Smashicons</a> from <a href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com</a>.
</p>

Last updated: September 01, 2024.
Last updated: September 05, 2024.

</div>
</div>
Expand Down
Binary file added _site/assets/img/panel/Javier.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _site/assets/img/panel/Milos.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _site/assets/img/panel/Steven.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _site/assets/img/panel/Teresa.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _site/assets/img/panel/avatar.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions _site/callforpapers/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<meta name="twitter:card" content="summary" />
<meta property="twitter:title" content="Call for Papers" />
<script type="application/ld+json">
{"headline":"Call for Papers","@type":"WebPage","url":"http://localhost:4000/callforpapers/","@context":"https://schema.org"}</script>
{"@type":"WebPage","url":"http://localhost:4000/callforpapers/","headline":"Call for Papers","@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
<link rel="stylesheet" href="/assets/css/style.css"><link type="application/atom+xml" rel="alternate" href="http://localhost:4000/feed.xml" title="Standing the Test of Time Workshop" />
</head>
Expand All @@ -28,7 +28,7 @@
</span>
</label>

<div class="trigger"><a class="page-link" href="/">Standing the Test of Time</a><a class="page-link" href="/speakers/">Speakers</a><a class="page-link" href="/organizers/">Organizers</a><a class="page-link" href="/callforpapers/">Call for Papers</a><a class="page-link" href="/schedule/">Schedule</a><a class="page-link" href="/contactus/">Contact Us</a></div>
<div class="trigger"><a class="page-link" href="/">Home</a><a class="page-link" href="/speakers/">Speakers</a><a class="page-link" href="/organizers/">Organizers</a><a class="page-link" href="/callforpapers/">Call for Papers</a><a class="page-link" href="/schedule/">Schedule</a><a class="page-link" href="/panel/">Panel</a><a class="page-link" href="/contactus/">Contact Us</a></div>
</nav></div>
</header>
<main class="page-content" aria-label="Content">
Expand Down Expand Up @@ -111,7 +111,7 @@ <h3 id="important-deadlines-subject-to-change">Important deadlines (subject to c
<p>Website based on a <a href="http://jekyllrb.com/" target="_blank">Jekyll</a> template from a <a href="https://krrish94.github.io">lazy grad student</a>. Some icons made by <a href="https://smashicons.com/" title="Smashicons">Smashicons</a> from <a href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com</a>.
</p>

Last updated: September 01, 2024.
Last updated: September 05, 2024.

</div>
</div>
Expand Down
6 changes: 3 additions & 3 deletions _site/contactus/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<meta name="twitter:card" content="summary" />
<meta property="twitter:title" content="Contact Us" />
<script type="application/ld+json">
{"headline":"Contact Us","@type":"WebPage","url":"http://localhost:4000/contactus/","@context":"https://schema.org"}</script>
{"@type":"WebPage","url":"http://localhost:4000/contactus/","headline":"Contact Us","@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
<link rel="stylesheet" href="/assets/css/style.css"><link type="application/atom+xml" rel="alternate" href="http://localhost:4000/feed.xml" title="Standing the Test of Time Workshop" />
</head>
Expand All @@ -28,7 +28,7 @@
</span>
</label>

<div class="trigger"><a class="page-link" href="/">Standing the Test of Time</a><a class="page-link" href="/speakers/">Speakers</a><a class="page-link" href="/organizers/">Organizers</a><a class="page-link" href="/callforpapers/">Call for Papers</a><a class="page-link" href="/schedule/">Schedule</a><a class="page-link" href="/contactus/">Contact Us</a></div>
<div class="trigger"><a class="page-link" href="/">Home</a><a class="page-link" href="/speakers/">Speakers</a><a class="page-link" href="/organizers/">Organizers</a><a class="page-link" href="/callforpapers/">Call for Papers</a><a class="page-link" href="/schedule/">Schedule</a><a class="page-link" href="/panel/">Panel</a><a class="page-link" href="/contactus/">Contact Us</a></div>
</nav></div>
</header>
<main class="page-content" aria-label="Content">
Expand Down Expand Up @@ -69,7 +69,7 @@ <h1 class="post-title">Contact Us</h1>
<p>Website based on a <a href="http://jekyllrb.com/" target="_blank">Jekyll</a> template from a <a href="https://krrish94.github.io">lazy grad student</a>. Some icons made by <a href="https://smashicons.com/" title="Smashicons">Smashicons</a> from <a href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com</a>.
</p>

Last updated: September 01, 2024.
Last updated: September 05, 2024.

</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion _site/feed.xml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="4.3.3">Jekyll</generator><link href="http://localhost:4000/feed.xml" rel="self" type="application/atom+xml" /><link href="http://localhost:4000/" rel="alternate" type="text/html" /><updated>2024-09-01T11:50:17-04:00</updated><id>http://localhost:4000/feed.xml</id><title type="html">Standing the Test of Time Workshop</title><subtitle></subtitle></feed>
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="4.3.3">Jekyll</generator><link href="http://localhost:4000/feed.xml" rel="self" type="application/atom+xml" /><link href="http://localhost:4000/" rel="alternate" type="text/html" /><updated>2024-09-05T11:01:14-04:00</updated><id>http://localhost:4000/feed.xml</id><title type="html">Standing the Test of Time Workshop</title><subtitle></subtitle></feed>
18 changes: 11 additions & 7 deletions _site/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1"><!-- Begin Jekyll SEO tag v2.7.1 -->
<title>Standing the Test of Time | Standing the Test of Time Workshop</title>
<title>Home | Standing the Test of Time Workshop</title>
<meta name="generator" content="Jekyll v4.3.3" />
<meta property="og:title" content="Standing the Test of Time" />
<meta property="og:title" content="Home" />
<meta property="og:locale" content="en_US" />
<link rel="canonical" href="http://localhost:4000/" />
<meta property="og:url" content="http://localhost:4000/" />
<meta property="og:site_name" content="Standing the Test of Time Workshop" />
<meta name="twitter:card" content="summary" />
<meta property="twitter:title" content="Standing the Test of Time" />
<meta property="twitter:title" content="Home" />
<script type="application/ld+json">
{"name":"Standing the Test of Time Workshop","headline":"Standing the Test of Time","@type":"WebSite","url":"http://localhost:4000/","@context":"https://schema.org"}</script>
{"@type":"WebSite","url":"http://localhost:4000/","headline":"Home","name":"Standing the Test of Time Workshop","@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
<link rel="stylesheet" href="/assets/css/style.css"><link type="application/atom+xml" rel="alternate" href="http://localhost:4000/feed.xml" title="Standing the Test of Time Workshop" />
</head>
Expand All @@ -28,12 +28,16 @@
</span>
</label>

<div class="trigger"><a class="page-link" href="/">Standing the Test of Time</a><a class="page-link" href="/speakers/">Speakers</a><a class="page-link" href="/organizers/">Organizers</a><a class="page-link" href="/callforpapers/">Call for Papers</a><a class="page-link" href="/schedule/">Schedule</a><a class="page-link" href="/contactus/">Contact Us</a></div>
<div class="trigger"><a class="page-link" href="/">Home</a><a class="page-link" href="/speakers/">Speakers</a><a class="page-link" href="/organizers/">Organizers</a><a class="page-link" href="/callforpapers/">Call for Papers</a><a class="page-link" href="/schedule/">Schedule</a><a class="page-link" href="/panel/">Panel</a><a class="page-link" href="/contactus/">Contact Us</a></div>
</nav></div>
</header>
<main class="page-content" aria-label="Content">
<div class="wrapper">
<div class="home"><h1 class="page-heading">Standing the Test of Time</h1><h2 id="retrospective-and-future-of-world-representations-for-lifelong-robotics">Retrospective and Future of World Representations for Lifelong Robotics</h2>
<div class="home">
<!--<h1 class="page-heading">Home</h1> -->
<!---->

<h2 id="retrospective-and-future-of-world-representations-for-lifelong-robotics">Retrospective and Future of World Representations for Lifelong Robotics</h2>

<ol>
<li><a href="speakers"><strong>Invited Speakers</strong>:</a> Steven Waslander (Toronto), Margarita Chli (ETH Zurich and UCY) and Luca Carlone (MIT). More info <a href="speakers">here</a>.</li>
Expand Down Expand Up @@ -94,7 +98,7 @@ <h3 id="program-committee-members">Program Committee Members</h3>
<p>Website based on a <a href="http://jekyllrb.com/" target="_blank">Jekyll</a> template from a <a href="https://krrish94.github.io">lazy grad student</a>. Some icons made by <a href="https://smashicons.com/" title="Smashicons">Smashicons</a> from <a href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com</a>.
</p>

Last updated: September 01, 2024.
Last updated: September 05, 2024.

</div>
</div>
Expand Down
Loading

0 comments on commit 36baeb0

Please sign in to comment.