generated from greenelab/lab-website-template
-
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.
Merge pull request #7 from asu-idi/basic-info
Add news page and QoL update for Navbar
- Loading branch information
Showing
7 changed files
with
107 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
- date: 2024-05-13 | ||
type: news-paper-accepted | ||
title: "2 Papers Accepted to be presented at ACM HotStorage 2024" | ||
|
||
- date: 2024-03-19 | ||
type: news-paper-accepted | ||
title: "2 Papers Accepted to be presented at MSST 2024" | ||
|
||
- date: 2024-02-23 | ||
type: news-paper-accepted | ||
title: "1 Paper Accepted to be presented at ACM SIGMOD 2024" | ||
|
||
- date: 2024-01-23 | ||
type: news-paper-accepted | ||
title: "1 Project Accepted for WIP and Poster at FAST 2024" | ||
|
||
- date: 2023-12-01 | ||
type: news-info | ||
title: "2023 Winter Research Camp Starts!" | ||
|
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,10 @@ | ||
{% assign color = site.data.types[include.type].color | default: "#808080" %} | ||
<div class="alert" style="--color: {{ color }}"> | ||
{% assign icon = site.data.types[include.type].icon | ||
| default: "fa-solid fa-circle-info" | ||
%} | ||
{% include icon.html icon=icon %} | ||
<div class="alert-content"> | ||
{{ include.date | append: ": " | append: include.content }} | ||
</div> | ||
</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
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,22 @@ | ||
--- | ||
title: News | ||
nav: | ||
order: 6 | ||
display: false | ||
--- | ||
|
||
# {% include icon.html icon="fa-solid fa-scroll" %}News | ||
|
||
{% assign news = site.data.news | ||
| sort: 'date' | ||
| reverse | ||
%} | ||
|
||
{% for item in news %} | ||
{% | ||
include news.html | ||
date=item.date | ||
type=item.type | ||
content=item.title | ||
%} | ||
{% endfor %} |