-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (39 loc) · 1.42 KB
/
index.html
File metadata and controls
42 lines (39 loc) · 1.42 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
---
layout: default
title: Home
---
<div class="home">
<section class="hero">
<h1 class="hero-title">Welcome to CryptoAttacker Tools</h1>
<p class="hero-description">
Professional tools and resources for cryptocurrency security research and development.
Explore our comprehensive collection of utilities designed for security researchers and developers.
</p>
<a href="{{ '/blog' | relative_url }}" class="cta-button">Explore Our Blog</a>
</section>
<section class="features">
<h2>Latest Blog Posts</h2>
<ul class="blog-list">
{% for post in site.posts limit:3 %}
<li class="blog-post-item">
<h3 class="blog-post-title">
<a href="{{ post.url | relative_url }}">{{ post.title | escape }}</a>
</h3>
<p class="blog-post-meta">
<time datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date: "%B %-d, %Y" }}</time>
{% if post.author %} • {{ post.author }}{% endif %}
</p>
<div class="blog-post-excerpt">
{{ post.excerpt }}
</div>
<a href="{{ post.url | relative_url }}" class="read-more">Read more →</a>
</li>
{% endfor %}
</ul>
{% if site.posts.size > 3 %}
<p style="text-align: center; margin-top: 2rem;">
<a href="{{ '/blog' | relative_url }}" class="cta-button">View All Posts</a>
</p>
{% endif %}
</section>
</div>