-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (44 loc) · 1.71 KB
/
index.html
File metadata and controls
48 lines (44 loc) · 1.71 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
---
layout: default
title: Max Aguirre / BoxingBytes
---
<div id="home">
<button class="theme-toggle" onclick="toggleTheme()" title="Toggle dark/light mode">🌙</button>
<!-- Hero Section -->
<div class="hero-section">
<div class="hero-visual">
<video width="100%" preload="auto" muted controls playsinline autoplay>
<source src="{{ '/assets/videos/commons/v0_solved_opt.mp4' | relative_url }}" type="video/mp4">
</video>
<p class="video-caption">Agents survive in a multi-agent harvest environment</p>
</div>
</div>
<!-- About Me Section -->
<section class="about-section">
<h2>About Me</h2>
<p class="about-text">{{ site.description }}</p>
</section>
<!-- Highlights Section (Only section on home page) -->
<section class="home-section">
<div class="section-header">
<h2>Highlights</h2>
</div>
<ul class="posts">
{% assign highlighted_posts = site.posts | where_exp:"post", "post.tags contains 'highlight'" %}
{% for post in highlighted_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>
</section>
</div>