blob: ac8a4e1dfcf47af003fac4ab7b90c88e8de980c0 (
plain)
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
|
<section class="hero" role="region" aria-label="Hero">
<div class="hero-left">
<div class="hero-prompt">// Featured</div>
<h1 class="hero-name" data-text="{{ .Site.Params.author }}">{{ .Site.Params.author }}</h1>
<div class="hero-role" id="typed" data-phrases='{{ .Site.Params.typingPhrases | jsonify }}'></div>
<p class="hero-tagline">{{ .Site.Params.description }}</p>
<div class="hero-buttons">
<a href="/articles/" class="btn btn-primary">Read Articles</a>
<a href="#articles" class="btn btn-outline">Explore</a>
</div>
</div>
<div class="hero-right">
<div class="hero-terminal">
<div class="terminal-bar">
<span class="terminal-dot" style="background: #ff6b6b;"></span>
<span class="terminal-dot" style="background: #ffd93d;"></span>
<span class="terminal-dot" style="background: #6bcf7f;"></span>
</div>
<div class="terminal-content">
<div>$ <span class="terminal-prompt">whoami</span></div>
<div>danilo</div>
<div>$ <span class="terminal-prompt">pwd</span></div>
<div>/home/danilo/web</div>
<div>$ <span class="terminal-prompt">ls -la</span></div>
<div>total 48</div>
<div>drwxr-xr-x 5 danilo staff 160 Apr 9 2026 .</div>
<div>-rw-r--r-- 1 danilo staff 4.2K blog.md</div>
</div>
</div>
</div>
<div class="scroll-indicator">
<span>Scroll to explore</span>
<svg width="20" height="20" viewBox="0 0 20 20" fill="none">
<path d="M10 3v10M6 9l4 4 4-4" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
</section>
|