-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (68 loc) · 3.64 KB
/
Copy pathindex.html
File metadata and controls
71 lines (68 loc) · 3.64 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
---
layout: default
title: Home
---
<!-- ── Hero ───────────────────────────────────────────────── -->
<section class="hero">
<div class="wrap hero__in">
<div class="hero__text">
<p class="eyebrow reveal" style="--d:0">Multi-Agent Quant Lab · {% include t.html ko="서울" en="Seoul" %}</p>
<h1 class="hero__title reveal" style="--d:1">
<span lang="ko">실거래까지 가는<br><em>트레이딩 시스템</em>을 만듭니다</span>
<span lang="en">We build trading systems<br>that <em>make it to live</em></span>
</h1>
<p class="hero__lede reveal" style="--d:2">
<span lang="ko">Claude · Codex 같은 AI 에이전트를 동료 삼아, 데이터부터 실행까지 직접 만드는 오픈 스터디.</span>
<span lang="en">An open study building the whole stack — from data to execution — with AI agents as teammates.</span>
</p>
<div class="hero__cta reveal" style="--d:3">
<a class="btn btn--solid" href="{{ '/about/' | relative_url }}">{% include t.html ko="소개" en="About" %} <span class="arr">→</span></a>
<a class="btn btn--ghost" href="https://github.com/{{ site.github_org }}" target="_blank" rel="noopener">GitHub ↗</a>
</div>
</div>
<div class="hero__device reveal" style="--d:2" aria-hidden="true">
<span class="hero__ring"></span>
<img src="{{ '/assets/img/maq-profile.png' | relative_url }}" alt="">
</div>
</div>
</section>
<!-- ── Members (right after hero) ─────────────────────────── -->
<section class="block">
<div class="wrap">
<div class="block__head reveal">
<p class="eyebrow"><span class="eyebrow__no">01</span>{% include t.html ko="멤버" en="People" %}</p>
<h2 class="block__title">{% include t.html ko="직접 만들고, 직접 굴립니다" en="We build it. We run it." %}</h2>
</div>
<ul class="people">
{% for m in site.data.members %}
{% include member-card.html member=m index=forloop.index0 nosocials=true %}
{% endfor %}
</ul>
<a class="morelink reveal" href="{{ '/people/' | relative_url }}">{% include t.html ko="멤버 전체 보기" en="Meet everyone" %} <span class="arr">→</span></a>
</div>
</section>
<!-- ── Recent activities ──────────────────────────────────── -->
{% assign recent = site.activities | sort: 'date' | reverse %}
{% if recent.size > 0 %}
<section class="block block--alt">
<div class="wrap">
<div class="block__head reveal">
<p class="eyebrow"><span class="eyebrow__no">02</span>{% include t.html ko="최근 활동" en="Recent activities" %}</p>
<h2 class="block__title">{% include t.html ko="스터디 · 세션 · 발표 기록" en="Study, sessions & talks" %}</h2>
</div>
<ul class="actlist">
{% for a in recent limit: 3 %}
<li class="actrow reveal">
<a href="{{ a.url | relative_url }}">
<span class="actrow__date">{{ a.date | date: '%Y.%m.%d' }}</span>
<span class="kind kind--{{ a.kind | default: 'session' }}">{% include t.html ko=a.kind_ko en=a.kind_en %}</span>
<span class="actrow__title">{% include t.html ko=a.title_ko en=a.title_en %}</span>
<span class="actrow__go">→</span>
</a>
</li>
{% endfor %}
</ul>
<a class="morelink reveal" href="{{ '/activities/' | relative_url }}">{% include t.html ko="활동 전체 보기" en="All activities" %} <span class="arr">→</span></a>
</div>
</section>
{% endif %}