-
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.
- Loading branch information
1 parent
f7c697e
commit 967d574
Showing
74 changed files
with
1,063 additions
and
208 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# Site Settings | ||
lang: en | ||
title: MetaSLAM | ||
tagline: MetaSLAM | ||
title: GairLab | ||
tagline: GairLab | ||
email: [email protected] | ||
description: > | ||
The demo site for Bulma Clean Theme, made for Jekyll and GitHub pages websites | ||
|
@@ -27,7 +27,7 @@ disqus: | |
# Leave shortname blank to disable comments site-wide. | ||
# Disable comments for any post by adding `comments: false` to that post's YAML Front Matter. | ||
# shortname: my_disqus_shortname | ||
shortname: csrhymes | ||
shortname: gairlab | ||
|
||
|
||
plugins: | ||
|
@@ -87,9 +87,9 @@ collections: | |
image: https://via.placeholder.com/800x600 | ||
show_sidebar: false | ||
|
||
# scholar: | ||
# style: simple-ieee.csl | ||
# bibliography_list_tag: "ul.no-bullet" | ||
# bibliography_template: bibtemplate | ||
scholar: | ||
style: simple-ieee.csl | ||
bibliography_list_tag: "ul.no-bullet" | ||
bibliography_template: bibtemplate | ||
|
||
# exclude: [vendor] | ||
exclude: [vendor] |
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,70 @@ | ||
- title: Faculty | ||
images: | ||
- link: /img/team/Prof_Peng_Yin.jpeg | ||
alt: Peng Yin | ||
description: |- | ||
**Peng Yin** <br> | ||
Assitant Professor | ||
ratio: is-1by1 | ||
|
||
- title: PhD Students | ||
images: | ||
- link: /img/team/phd/shiqi_zhao.jpeg | ||
alt: Shiqi Zhao | ||
description: |- | ||
[**Shiqi Zhao**](/team/phd/shiqi_zhao) <br> | ||
Phd Student | ||
ratio: is-4by3 | ||
- link: /img/team/phd/jing_wang.jpeg | ||
alt: Jing Wang | ||
description: |- | ||
[**Jing Wang**](/team/phd/jing_wang) <br> | ||
Phd Student | ||
ratio: is-4by3 | ||
|
||
- title: Master Students | ||
images: | ||
- link: /img/team/master/zihao_li.jpeg | ||
alt: Zihao Li | ||
description: |- | ||
[**Zihao Li**](/team/master/zihao_li) <br> | ||
Master Student | ||
ratio: is-4by3 | ||
- link: /img/team/master/lvchuan_ma.jpeg | ||
alt: Lyuchuan Ma | ||
description: |- | ||
[**Lyuchuan Ma**](/team/master/lvchuan_ma) <br> | ||
Master Student | ||
ratio: is-4by3 | ||
|
||
- title: Research Asistants | ||
images: | ||
- link: /img/team/ra/shulong_jiang.jpeg | ||
alt: Shulong Jiang | ||
description: |- | ||
[**Shulong Jiang**](/team/ra/shulong_jiang) <br> | ||
Research Asistants | ||
ratio: is-4by3 | ||
- link: /img/team/phd/kaixin_chai.jpeg | ||
alt: Kaixin Chai | ||
description: |- | ||
[**Kaixin Chai**](/team/ra/kaixin_chai) <br> | ||
Research Asistants | ||
ratio: is-4by3 | ||
|
||
# - title: Interns | ||
# images: | ||
# - link: /img/team/intern/jicheng_tang.jpeg | ||
# alt: Jicheng Tang | ||
# description: |- | ||
# **Jicheng Tang** | ||
|
||
# Intern | ||
# ratio: is-1by1 | ||
# - link: /img/team/intern/yiming_zhang.jpeg | ||
# alt: Yiming Zhang | ||
# description: |- | ||
# **Yiming Zhang** | ||
|
||
# Intern | ||
# ratio: is-1by1 |
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
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,29 +1,58 @@ | ||
<div class="card"> | ||
{% if post.redirect %} | ||
<a href="{{ post.redirect }}" target="_blank"> | ||
{% else %} | ||
<a href="{{ site.baseurl }}{{ post.url }}"> | ||
{% endif %} | ||
<div class="card" style="height: 100%; display: flex; flex-direction: column; align-items: center;"> | ||
{% if post.image %} | ||
<div class="card-image"> | ||
<img src="{{ post.image }}" alt="{{ post.title }}"> | ||
</div> | ||
<div style="height: 200px;"> | ||
<img src="{{ post.image }}" alt="{{ post.title }}" style="object-fit: contain; height: 100%;"> | ||
</div> | ||
{% else %} | ||
<header class="card-header"> | ||
<a class="card-header-title" href="{{ site.baseurl }}{{ post.url }}">{{ post.title}}</a> | ||
<div class="card-header-title">{{ post.title}}</div> | ||
</header> | ||
{% endif %} | ||
<div class="card-content"> | ||
<div class="card-content" style="flex-grow: 3;"> | ||
<div class="content"> | ||
{% if post.image %} | ||
<a class="title is-4" href="{{ site.baseurl }}{{ post.url }}">{{ post.title}}</a> | ||
<div class="title is-5">{{ post.title}}</div> | ||
{% endif %} | ||
{% if post.summary %} | ||
{{ post.summary | markdownify }} | ||
{% else %} | ||
<p>{{ post.excerpt }}</p> | ||
{% endif %} | ||
</div> | ||
<div class="has-text-centered"> | ||
<a href="{{ site.baseurl }}{{ post.url }}" class="button is-primary">Read more</a> | ||
<p>{{ post.excerpt | strip_html | strip_newlines | truncate: 100 }}</p> | ||
</div> | ||
</div> | ||
<footer class="card-footer"> | ||
<p class="card-footer-item">Published: {{ post.date | date: "%b %-d, %Y" }}</p> | ||
</footer> | ||
</div> | ||
</div> | ||
</a> | ||
|
||
<!-- <div class="card"> --> | ||
<!-- {% if post.image %} --> | ||
<!-- <div class="card-image"> --> | ||
<!-- <img src="{{ post.image }}" alt="{{ post.title }}"> --> | ||
<!-- </div> --> | ||
<!-- {% else %} --> | ||
<!-- <header class="card-header"> --> | ||
<!-- <a class="card-header-title" href="{{ site.baseurl }}{{ post.url }}">{{ post.title}}</a> --> | ||
<!-- </header> --> | ||
<!-- {% endif %} --> | ||
<!-- <div class="card-content"> --> | ||
<!-- <div class="content"> --> | ||
<!-- {% if post.image %} --> | ||
<!-- <a class="title is-4" href="{{ site.baseurl }}{{ post.url }}">{{ post.title}}</a> --> | ||
<!-- {% endif %} --> | ||
<!-- {% if post.summary %} --> | ||
<!-- {{ post.summary | markdownify }} --> | ||
<!-- {% else %} --> | ||
<!-- <p>{{ post.excerpt }}</p> --> | ||
<!-- {% endif %} --> | ||
<!-- </div> --> | ||
<!-- <div class="has-text-centered"> --> | ||
<!-- <a href="{{ site.baseurl }}{{ post.url }}" class="button is-primary">Read more</a> --> | ||
<!-- </div> --> | ||
<!-- </div> --> | ||
<!-- <footer class="card-footer"> --> | ||
<!-- <p class="card-footer-item">Published: {{ post.date | date: "%b %-d, %Y" }}</p> --> | ||
<!-- </footer> --> | ||
<!-- </div> --> |
This file was deleted.
Oops, something went wrong.
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,14 @@ | ||
--- | ||
layout: default | ||
--- | ||
|
||
{{ content }} | ||
|
||
{% assign posts = site.posts | where:"categories","exploration"%} | ||
<div class="columns is-multiline"> | ||
{% for post in posts %} | ||
<div class="column is-3-desktop is-6-tablet"> | ||
{% include post-card.html %} | ||
</div> | ||
{% endfor %} | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
layout: default | ||
--- | ||
|
||
{{ content }} | ||
|
||
{% assign posts = site.posts | where:"categories","localization"%} | ||
<div class="columns is-multiline"> | ||
{% for post in posts %} | ||
<div class="column is-3-desktop is-6-tablet"> | ||
{% include post-card.html %} | ||
</div> | ||
{% endfor %} | ||
</div> |
Oops, something went wrong.