forked from alshedivat/al-folio
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding PRL workshop submission acceptance
- Loading branch information
Showing
8 changed files
with
69 additions
and
6 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
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
layout: post | ||
date: 2024-12-20 16:00:00-0400 | ||
inline: true | ||
--- | ||
|
||
Our work on Planning with temporally-extended models has been accepted at the [PRL workshop](https://prl-theworkshop.github.io/) at AAAI 2025. |
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: post | ||
date: 2024-03-24 16:00:00-0400 | ||
inline: true | ||
--- | ||
|
||
I passed by qualifying examinations. |
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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
--- | ||
layout: page | ||
permalink: /news/ | ||
title: news | ||
description: | ||
nav: false | ||
--- | ||
<div class="news"> | ||
{% if site.news != blank -%} | ||
{%- assign news_size = site.news | size -%} | ||
<div class="table-responsive" {% if site.news_scrollable and news_size > 3 %}style="max-height: 10vw"{% endif %}> | ||
<table class="table table-sm table-borderless"> | ||
{%- assign news = site.news | reverse -%} | ||
{% if site.news_limit %} | ||
{% assign news_limit = site.news_limit %} | ||
{% else %} | ||
{% assign news_limit = news_size %} | ||
{% endif %} | ||
{% for item in news %} | ||
<tr> | ||
<th scope="row" style="width:20%">{{ item.date | date: "%b, %Y" }}</th> | ||
<td> | ||
{% if item.inline -%} | ||
{{ item.content | remove: '<p>' | remove: '</p>' | emojify }} | ||
{%- else -%} | ||
<a class="news-title" href="{{ item.url | relative_url }}">{{ item.title }}</a> | ||
{%- endif %} | ||
</td> | ||
</tr> | ||
{%- endfor %} | ||
</table> | ||
</div> | ||
{%- else -%} | ||
<p>No news so far...</p> | ||
{%- endif %} | ||
</div> |
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