Skip to content

Commit b417bf7

Browse files
committed
Add research papers section with styling for improved presentation
1 parent f06a0b6 commit b417bf7

File tree

2 files changed

+78
-1
lines changed

2 files changed

+78
-1
lines changed

index.html

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ <h2>Tutorial Themes</h2>
108108
<div class="theme-label">Theme 1</div>
109109
<div class="theme-title">Hands-On Agentic AI Development</div>
110110
<div class="theme-audience">For developers and students</div>
111-
<div class="theme-desc">Write <code class="code-hl">by llm()</code> and the compiler writes the prompts. Build multi-agent systems with walkers on graphs. Zero boilerplate.</div>
111+
<div class="theme-desc">Write <a href="https://byllm.jaseci.org/" target="_blank" rel="noopener"><code class="code-hl">by llm()</code></a> and the compiler writes the prompts. Build multi-agent systems with walkers on graphs. Zero boilerplate.</div>
112112
<div class="theme-glow"></div>
113113
</div>
114114
<div class="theme-card theme-2">
@@ -162,6 +162,24 @@ <h3>ASPLOS 2026</h3>
162162
<p>Official ASPLOS 2026 workshops and tutorials page at Pittsburgh, March 2026.</p>
163163
</a>
164164
</div>
165+
166+
<div class="papers-section">
167+
<h3>Research Papers</h3>
168+
<ul class="papers-list">
169+
<li>
170+
<svg class="paper-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><polyline points="14 2 14 8 20 8"/><line x1="16" y1="13" x2="8" y2="13"/><line x1="16" y1="17" x2="8" y2="17"/><polyline points="10 9 9 9 8 9"/></svg>
171+
<a href="https://dl.acm.org/doi/pdf/10.1145/3763092" target="_blank" rel="noopener">MTP: A Meaning-Typed Language Abstraction for AI-Integrated Programming</a>
172+
</li>
173+
<li>
174+
<svg class="paper-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><polyline points="14 2 14 8 20 8"/><line x1="16" y1="13" x2="8" y2="13"/><line x1="16" y1="17" x2="8" y2="17"/><polyline points="10 9 9 9 8 9"/></svg>
175+
<a href="https://arxiv.org/abs/2509.16248" target="_blank" rel="noopener">GraphMend: Code Transformations for Fixing Graph Breaks in PyTorch 2</a>
176+
</li>
177+
<li>
178+
<svg class="paper-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><polyline points="14 2 14 8 20 8"/><line x1="16" y1="13" x2="8" y2="13"/><line x1="16" y1="17" x2="8" y2="17"/><polyline points="10 9 9 9 8 9"/></svg>
179+
<a href="https://arxiv.org/abs/2511.19427" target="_blank" rel="noopener">Prompt Less, Smile More: MTP with Semantic Engineering in Lieu of Prompt Engineering</a>
180+
</li>
181+
</ul>
182+
</div>
165183
</section>
166184

167185
<!-- Schedule -->

styles.css

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -733,6 +733,65 @@ h2 {
733733
margin: 0;
734734
}
735735

736+
/* Research Papers List */
737+
.papers-section {
738+
margin-top: 40px;
739+
}
740+
741+
.papers-section h3 {
742+
font-size: 1rem;
743+
font-weight: 600;
744+
color: var(--text-muted);
745+
margin-bottom: 16px;
746+
text-transform: uppercase;
747+
letter-spacing: 0.05em;
748+
}
749+
750+
.papers-list {
751+
list-style: none;
752+
padding: 0;
753+
margin: 0;
754+
display: flex;
755+
flex-direction: column;
756+
gap: 12px;
757+
}
758+
759+
.papers-list li {
760+
display: flex;
761+
align-items: flex-start;
762+
gap: 12px;
763+
padding: 12px 16px;
764+
background: var(--bg-card);
765+
border: 1px solid var(--border-color);
766+
border-radius: var(--radius-sm);
767+
transition: all 0.2s ease;
768+
}
769+
770+
.papers-list li:hover {
771+
border-color: var(--primary-color);
772+
background: rgba(245, 158, 11, 0.03);
773+
}
774+
775+
.paper-icon {
776+
width: 20px;
777+
height: 20px;
778+
min-width: 20px;
779+
color: var(--primary-color);
780+
margin-top: 2px;
781+
}
782+
783+
.papers-list a {
784+
color: var(--text-main);
785+
text-decoration: none;
786+
font-size: 0.95rem;
787+
line-height: 1.5;
788+
transition: color 0.2s;
789+
}
790+
791+
.papers-list a:hover {
792+
color: var(--primary-color);
793+
}
794+
736795
/* Timeline / Schedule */
737796
.timeline {
738797
margin-top: 32px;

0 commit comments

Comments
 (0)