Skip to content

Commit 764f02e

Browse files
committed
Update the layout
1 parent f7284e1 commit 764f02e

2 files changed

Lines changed: 39 additions & 2 deletions

File tree

_config.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ repo_trophies:
4646

4747
navbar_fixed: true
4848
footer_fixed: true
49-
search_enabled: true
49+
search_enabled: false
5050
socials_in_search: true
5151
posts_in_search: true
5252
bib_search: true
@@ -202,6 +202,8 @@ exclude:
202202
- _pages/service.md
203203
- _pages/blog.md
204204
- _posts
205+
- _pages/publications.md
206+
- _pages/projects.md
205207
keep_files:
206208
- CNAME
207209
- .nojekyll

_pages/about.md

Lines changed: 36 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ permalink: /
55
subtitle: >
66
<b>Email:</b> <a href="mailto:pfzuo.cs@gmail.com">pfzuo.cs@gmail.com</a>, <a href="mailto:pengfei.zuo@huawei.com">pengfei.zuo@huawei.com</a>
77
8-
selected_papers: true # includes a list of papers marked as "selected={true}"
8+
selected_papers: false # includes a list of papers marked as "selected={true}"
99
social: true # includes social icons at the bottom of the page
1010

1111
announcements:
@@ -22,3 +22,38 @@ latest_posts:
2222
Welcome to ASISys – an open-source organization dedicated to advancing system research and development in Artificial Super Intelligence (ASI). While ASI has not yet been fully realized, our vision is to create foundational systems and techniques that push the boundaries of current AI and lay the groundwork for the future emergence of ASI.
2323

2424
We focus on scalable, efficient, and adaptive AI systems that evolve over time, improving the efficacy and efficiency of both AI training and serving. Our work includes developing architectures, systems, algorithms, and tools that are essential for the transition from narrow AI to super intelligent systems.
25+
26+
## Publications
27+
28+
<div class="publications">
29+
30+
{% bibliography %}
31+
32+
</div>
33+
34+
{% assign sorted_projects = site.projects | sort: "importance" %}
35+
36+
<!-- Generate cards for each project -->
37+
38+
---
39+
40+
## Projects
41+
42+
<div class="projects">
43+
{% if page.horizontal %}
44+
<div class="container">
45+
<div class="row row-cols-1 row-cols-md-2">
46+
{% for project in sorted_projects %}
47+
{% include projects_horizontal.liquid %}
48+
{% endfor %}
49+
</div>
50+
</div>
51+
{% else %}
52+
<div class="row row-cols-1 row-cols-md-3">
53+
{% for project in sorted_projects %}
54+
{% include projects.liquid %}
55+
{% endfor %}
56+
</div>
57+
{% endif %}
58+
</div>
59+

0 commit comments

Comments
 (0)