-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
49 lines (46 loc) · 1.81 KB
/
blog.html
File metadata and controls
49 lines (46 loc) · 1.81 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
---
layout: default
title: Blog
permalink: /blog/
---
<main>
<section class="hero">
<div class="hero-container">
<h1>Latest Insights</h1>
<p>Stay updated with the latest developments in multikernel technology, cloud computing, and operating system innovation.</p>
</div>
</section>
<section class="content-page">
<div class="content-container">
{% for post in site.posts %}
<article class="blog-post-card">
<div class="blog-post-header">
<h2><a href="{{ post.url | relative_url }}">{{ post.title }}</a></h2>
<div class="blog-post-meta">
<span class="author">{{ post.author }}</span>
<span class="date">{{ post.date | date: "%B %d, %Y" }}</span>
{% if post.categories %}
<div class="categories">
{% for category in post.categories %}
<span class="category">{{ category }}</span>
{% endfor %}
</div>
{% endif %}
</div>
</div>
<div class="blog-post-excerpt">
<p>{{ post.excerpt | strip_html | truncatewords: 30 }}</p>
</div>
<div class="blog-post-footer">
<a href="{{ post.url | relative_url }}" class="read-more">Read Full Article</a>
</div>
</article>
{% endfor %}
{% if site.posts.size == 0 %}
<div class="no-posts">
<p>No blog posts available yet. Check back soon for updates!</p>
</div>
{% endif %}
</div>
</section>
</main>