-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (58 loc) · 2.22 KB
/
index.html
File metadata and controls
68 lines (58 loc) · 2.22 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
---
layout: default
---
<div class="home">
<section class="hero">
<h1 class="hero-title">Welcome to {{ site.title }}</h1>
<p class="hero-description">{{ site.description | markdownify | strip_html }}</p>
</section>
<section class="recent-posts">
<h2 class="section-title">Recent Posts</h2>
<div class="post-grid">
{% for post in site.posts limit:6 %}
<article class="post-card">
<div class="post-card-content">
<h3 class="post-card-title">
<a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h3>
<div class="post-card-meta">
<time datetime="{{ post.date | date_to_xmlschema }}">
{{ post.date | date: "%B %-d, %Y" }}
</time>
{% if post.categories.size > 0 %}
<span class="post-card-category">{{ post.categories.first }}</span>
{% endif %}
</div>
{% if post.excerpt %}
<p class="post-card-excerpt">{{ post.excerpt | strip_html | truncatewords: 30 }}</p>
{% endif %}
<a href="{{ post.url | prepend: site.baseurl }}" class="read-more">Read more →</a>
</div>
</article>
{% endfor %}
</div>
<div class="view-all-posts">
<a href="/archive/" class="btn btn-primary">View All Posts</a>
</div>
</section>
<section class="featured-content">
<h2 class="section-title">Featured Topics</h2>
<div class="topic-grid">
<div class="topic-card">
<h3>Programming</h3>
<p>Articles about various programming languages and technologies</p>
<a href="/categories/programming/" class="topic-link">Explore →</a>
</div>
<div class="topic-card">
<h3>System Administration</h3>
<p>Linux, DevOps, and infrastructure management</p>
<a href="/categories/sysadmin/" class="topic-link">Explore →</a>
</div>
<div class="topic-card">
<h3>Security</h3>
<p>Cybersecurity, privacy, and related topics</p>
<a href="/categories/security/" class="topic-link">Explore →</a>
</div>
</div>
</section>
</div>