-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresearch.html
More file actions
56 lines (49 loc) · 1.65 KB
/
research.html
File metadata and controls
56 lines (49 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
---
layout: default
title: Research - Paper Implementations
---
<div class="section-page">
<h1>Research</h1>
<p class="section-description">Implementation of key papers in reinforcement learning and multi-agent systems</p>
<ul class="posts">
{% assign research_posts = site.posts | where_exp:"post", "post.tags contains 'research'" %}
{% if research_posts.size == 0 %}
{% comment %}Fallback: Show posts with specific research-related keywords{% endcomment %}
{% assign research_posts = site.posts | where_exp:"post", "post.tags contains 'post'" %}
{% endif %}
{% for post in research_posts %}
<li>
<span class="post-date">{{ post.date | date_to_string }}</span>
»
{% if post.external_url %}
<a href="{{ post.external_url }}" target="_blank" rel="noopener">{{ post.title }}</a>
{% else %}
<a href="{{ post.url | relative_url }}">{{ post.title }}</a>
{% endif %}
{% if post.description %}
<div class="post-description">{{ post.description }}</div>
{% endif %}
</li>
{% endfor %}
</ul>
{% if research_posts.size == 0 %}
<p>Research implementations coming soon.</p>
{% endif %}
</div>
<style>
.research-intro {
background: #f0f7f4;
padding: 1.5rem;
border-radius: 8px;
margin-bottom: 2rem;
border-left: 4px solid #159957;
}
[data-theme="dark"] .research-intro {
background: #1c2128;
}
.research-intro p {
margin: 0;
font-size: 1.05rem;
line-height: 1.6;
}
</style>