Add dynamic blog preview to homepage
- Create blog/posts.json for managing blog post metadata - Add blog preview box (max 1/3 screen width) to homepage - Fetch latest post dynamically with image and excerpt - Updates automatically when new posts added to JSON - Styled to fit no-scroll homepage layout - Link to full blog page for each post
This commit is contained in:
10
blog/posts.json
Normal file
10
blog/posts.json
Normal file
@ -0,0 +1,10 @@
|
||||
[
|
||||
{
|
||||
"id": "01",
|
||||
"title": "First Blog Post",
|
||||
"date": "2026-02-28",
|
||||
"excerpt": "This is the first blog post excerpt. Add your own blog entries by updating this JSON file with a title, date, image path, and excerpt.",
|
||||
"image": "./src/img/CannotConnect.JPEG",
|
||||
"slug": "first-blog-post"
|
||||
}
|
||||
]
|
||||
@ -243,6 +243,12 @@
|
||||
<a href="https://dangrubb.net/music">EXCLUSIVE: Leaked mixtape from Darnea's vault</a>
|
||||
</p>
|
||||
|
||||
<div class="blog-preview-container">
|
||||
<div class="blog-preview" id="latestBlogPreview">
|
||||
<p style="color: #9d9aa4;">Loading latest post...</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="debug">
|
||||
<div class="code"></div>
|
||||
</div>
|
||||
|
||||
37
script.js
37
script.js
@ -127,3 +127,40 @@ uncomment the code below.
|
||||
// <pre>${css.join("\n\n")}</pre>
|
||||
// </div>
|
||||
// `;
|
||||
|
||||
// Load latest blog post preview
|
||||
async function loadLatestBlogPost() {
|
||||
try {
|
||||
const response = await fetch('./blog/posts.json');
|
||||
const posts = await response.json();
|
||||
|
||||
if (posts.length === 0) {
|
||||
document.getElementById('latestBlogPreview').innerHTML = '<p style="color: #9d9aa4;">No blog posts yet.</p>';
|
||||
return;
|
||||
}
|
||||
|
||||
// Get the latest post (first in the array)
|
||||
const latestPost = posts[0];
|
||||
|
||||
// Create the preview HTML
|
||||
const previewHTML = `
|
||||
<a href="./blog/#${latestPost.slug}" class="blog-preview-title">${latestPost.title}</a>
|
||||
<div class="blog-preview-date">${new Date(latestPost.date).toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric' })}</div>
|
||||
<img src="${latestPost.image}" alt="${latestPost.title}" />
|
||||
<p class="blog-preview-excerpt">${latestPost.excerpt}</p>
|
||||
<a href="./blog/#${latestPost.slug}" class="blog-preview-link">Read more →</a>
|
||||
`;
|
||||
|
||||
document.getElementById('latestBlogPreview').innerHTML = previewHTML;
|
||||
} catch (error) {
|
||||
console.error('Error loading blog posts:', error);
|
||||
document.getElementById('latestBlogPreview').innerHTML = '<p style="color: #9d9aa4;">Error loading blog posts.</p>';
|
||||
}
|
||||
}
|
||||
|
||||
// Load blog preview when page is ready
|
||||
if (document.readyState === 'loading') {
|
||||
document.addEventListener('DOMContentLoaded', loadLatestBlogPost);
|
||||
} else {
|
||||
loadLatestBlogPost();
|
||||
}
|
||||
68
style.css
68
style.css
@ -294,6 +294,74 @@ body {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
/* Blog Preview Box */
|
||||
.blog-preview-container {
|
||||
margin: 30px auto 0;
|
||||
max-width: 33%;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.blog-preview {
|
||||
border: 1px solid rgba(155, 169, 180, 0.3);
|
||||
border-radius: 4px;
|
||||
padding: 15px;
|
||||
background: linear-gradient(135deg, rgba(13, 10, 20, 0.6), rgba(50, 30, 80, 0.3));
|
||||
overflow: hidden;
|
||||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
|
||||
}
|
||||
|
||||
.blog-preview img {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
max-height: 150px;
|
||||
object-fit: cover;
|
||||
border-radius: 3px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.blog-preview-title {
|
||||
color: #ffff00;
|
||||
font-weight: bold;
|
||||
font-size: 0.95rem;
|
||||
margin: 10px 0 5px;
|
||||
text-decoration: none;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.blog-preview-title:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.blog-preview-date {
|
||||
color: #aa95bd;
|
||||
font-size: 0.8rem;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.blog-preview-excerpt {
|
||||
color: #9d9aa4;
|
||||
font-size: 0.85rem;
|
||||
line-height: 1.4;
|
||||
margin: 8px 0 10px;
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 2;
|
||||
-webkit-box-orient: vertical;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.blog-preview-link {
|
||||
display: inline-block;
|
||||
color: #6be1e9;
|
||||
font-size: 0.8rem;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.blog-preview-link:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
/* Push the navigation to the bottom using flexbox spacer */
|
||||
.bottom-nav {
|
||||
margin-top: auto;
|
||||
|
||||
Reference in New Issue
Block a user