Skip to content

Commit 925ebf2

Browse files
modify publications & projects to show all on main page; add teachings info
1 parent 8576868 commit 925ebf2

10 files changed

Lines changed: 101 additions & 46 deletions

File tree

_includes/projects.liquid

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
%}
1313
{% endif %}
1414
<div class="card-body">
15-
<h2 class="card-title">{{ project.title }}</h2>
15+
<h6 class="card-title">{{ project.title }}</h6>
1616
<p class="card-text">{{ project.description }}</p>
1717
<div class="row ml-1 mr-1 p-0">
1818
{% if project.github %}

_includes/teaching.liquid

Lines changed: 49 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,53 @@
11
<!-- Teaching Assistant -->
2-
<h5>Teaching Assistant:</h5>
3-
<div style="display: flex; justify-content: space-between;">
4-
<h6>Teaching Assistant | <a href="https://github.com/UTD-CG/Computer-Graphic--UTD"> UTD CS4361/CS6366 Computer
5-
Graphics</a></h6>
6-
<p align="right"> @2025Spring, 2024Fall </p>
2+
<div class="teaching-assistant">
3+
<div class="container">
4+
<h4>Teaching Assistant:</h4>
5+
<ul class="list">
6+
<li>
7+
<a href="https://labs.utdallas.edu/irvl/courses/cs6384_spring22/">
8+
UTD CS6384 Computer Vision
9+
</a>
10+
</li>
11+
<li>
12+
<a href="https://catalog.utdallas.edu/2022/undergraduate/courses/cs4332">
13+
UTD CS4332 Introduction to Programming Video Games
14+
</a>
15+
</li>
16+
<li>
17+
<a href="https://catalog.utdallas.edu/2021/graduate/courses/cs6314">
18+
UTD CS6314 Web Programming Languages
19+
</a>
20+
</li>
21+
<li>
22+
<a href="https://catalog.utdallas.edu/2021/undergraduate/courses/cs4391">
23+
UTD CS4391 Introduction to Computer Vision
24+
</a>
25+
</li>
26+
<li>
27+
<a href="https://catalog.utdallas.edu/2020/graduate/courses/cs6366">
28+
UTD CS6366 Computer Graphics
29+
</a>
30+
</li>
31+
</ul>
32+
</div>
733
</div>
834

9-
<div style="display: flex; justify-content: space-between;">
10-
<h6>Teaching Assistant | <a href="https://github.com/CS6323utd/asst0_environment">UTD CS6323 Computer Animation and
11-
Gaming</a></h6>
12-
<p align="right"> @2022Fall </p>
13-
</div>
14-
<div style="display: flex; justify-content: space-between;">
15-
<h6>Teaching Assistant | <a href="https://github.com/CS6366utd/starter_code_mac">UTD CS6366 Computer Graphics</a></h6>
16-
<p align="right"> @2021Spring </p>
17-
</div>
18-
<div style="display: flex; justify-content: space-between;">
19-
<h6>Teaching Assistant | UTD CS6334 Virtual Reality</h6>
20-
<p align="right"> @2020Spring </p>
21-
</div>
22-
<div style="display: flex; justify-content: space-between;">
23-
<h6>Teaching Assistant | UTD CS4347 Database Systems</h6>
24-
<p align="right"> @2021Spring, 2022Fall </p>
25-
</div>
26-
<div style="display: flex; justify-content: space-between; margin-bottom:10px;">
27-
<h6>Teaching Assistant | UTD CS4332 Introduction to Programming Video Games</h6>
28-
<p align="right"> @2019Fall </p>
29-
</div>
35+
<!-- Presentations -->
36+
<div class="seminar-talks">
37+
<div class="container">
38+
<h4>Seminar Talks:</h4>
39+
<ul class="list">
40+
<li>
41+
<a href="/assets/pdf/siminar_talks/20251010_ManipTrans.pdf">
42+
MANIPTRANS: Efficient Dexterous Bimanual Manipulation Transfer via Residual Learning
43+
</a>
44+
</li>
45+
<li>
46+
<a href="/assets/pdf/siminar_talks/20260130_DexMan.pdf">
47+
DexMan: Learning Bimanual Dexterous Manipulation from Human and Generated Videos
48+
</a>
49+
</li>
50+
</ul>
3051

31-
<!-- Guest Lectures -->
32-
<h5>Guest Lectures:</h5>
52+
</div>
53+
</div>

_layouts/about.liquid

Lines changed: 37 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ layout: default
4242
<!-- News -->
4343
{% if page.announcements and page.announcements.enabled %}
4444
<h2>
45-
<a href="{{ '/news/' | relative_url }}" style="color: inherit">Latest News</a>
45+
<a href="{{ '/news/' | relative_url }}" style="color: inherit">News</a>
4646
</h2>
4747
{% include news.liquid limit=true %}
4848
{% endif %}
@@ -57,27 +57,54 @@ layout: default
5757
{% endif %}
5858

5959
<!-- Selected papers -->
60-
6160
{% if page.selected_papers %}
62-
<h2 id="publications">
63-
<a href="{{ '/#publications' | relative_url }}" style="color: inherit">Selected Publications</a>
64-
</h2>
65-
{% include selected_papers.liquid %}
61+
<div class="publications">
62+
<h2 id="publications">Publications</h2>
63+
{% bibliography --group_by none %}
64+
</div>
6665
{% endif %}
6766

67+
<!-- Projects -->
68+
{% if page.projects and page.projects.enabled %}
69+
<div class="projects">
70+
<h2 id="projects">Projects</h2>
71+
<!-- Display categorized projects -->
72+
{% for category in page.projects.display_categories %}
73+
{% comment %} <a id="{{ category }}" href=".#{{ category }}">
74+
<h2 class="category">{{ category }}</h2>
75+
</a> {% endcomment %}
76+
{% assign categorized_projects = site.projects | where: "category", category %}
77+
{% assign sorted_projects = categorized_projects | sort: "importance" %}
78+
<!-- Generate cards for each project -->
79+
{% if page.projects.horizontal %}
80+
<div class="container">
81+
<div class="row row-cols-2 row-cols-md-2">
82+
{% for project in sorted_projects %}
83+
{% include projects_horizontal.liquid %}
84+
{% endfor %}
85+
</div>
86+
</div>
87+
{% else %}
88+
<div class="row row-cols-1 row-cols-md-4">
89+
{% for project in sorted_projects %}
90+
{% include projects.liquid %}
91+
{% endfor %}
92+
</div>
93+
{% endif %}
94+
{% endfor %}
95+
</div>
96+
{%- endif %}
97+
6898
<!-- Teaching -->
6999
{% if page.teaching -%}
70-
<h2 id="teaching">
71-
<a href="{{ '/#teaching' | relative_url }}" style="color: inherit">Teaching</a>
72-
</h2>
100+
<h2 id="teaching">Teaching</h2>
73101
{%- include teaching.liquid %}
74102
{%- endif %}
75103

76104
<!-- Social -->
77105
{% if page.social %}
78106
<div class="social">
79107
<div class="contact-icons">{% social_links %}</div>
80-
81108
<div class="contact-note">{{ site.contact_note }}</div>
82109
</div>
83110
{% endif %}

_pages/about.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,13 @@ profile:
1212

1313
selected_papers: true # includes a list of papers marked as "selected={true}"
1414
social: false # includes social icons at the bottom of the page
15-
teaching: false # includes a section for teaching courses, lectures, and lab seminar talks
15+
teaching: true # includes a section for teaching courses, lectures, and lab seminar talks
16+
17+
projects:
18+
enabled: true # includes a list of news items
19+
display_categories: [SummerCamp]
20+
horizontal: false
21+
1622

1723
announcements:
1824
enabled: true # includes a list of news items

_pages/projects.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
layout: page
33
title: Projects
4-
permalink: /projects/
5-
description: A growing collection of your cool projects.
4+
permalink: /#projects
5+
# description:
66
nav: true
77
nav_order: 2
88
display_categories: [Work, SummerCamp, Other]

_pages/publications.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: page
3-
permalink: /publications/
4-
# permalink: /#publications # Create a Link to Jump to a Specific Part of a Page
3+
# permalink: /publications/
4+
permalink: /#publications # Create a Link to Jump to a Specific Part of a Page
55
title: Publications
66
# description: publications by categories in reversed chronological order.
77
nav: true

_pages/teaching.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
---
22
layout: page
3-
permalink: /teaching/
3+
# permalink: /teaching/
4+
permalink: /#teaching
45
title: Teaching
56
description: courses, lectures and lab seminar talks.
6-
nav: false
7+
nav: true
78
nav_order: 3
89
---
910

assets/pdf/example_pdf.pdf

-15.5 KB
Binary file not shown.
1.97 MB
Binary file not shown.
1.76 MB
Binary file not shown.

0 commit comments

Comments
 (0)