Delete blog.html
Browse files
blog.html
DELETED
|
@@ -1,77 +0,0 @@
|
|
| 1 |
-
<!DOCTYPE html>
|
| 2 |
-
<html lang="en">
|
| 3 |
-
<head>
|
| 4 |
-
<meta charset="UTF-8">
|
| 5 |
-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
-
<title>Blog | FMN-GPT - CompactAI</title>
|
| 7 |
-
<link rel="stylesheet" href="styles.css">
|
| 8 |
-
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
|
| 9 |
-
</head>
|
| 10 |
-
<body>
|
| 11 |
-
<nav class="main-nav">
|
| 12 |
-
<div class="container">
|
| 13 |
-
<a href="index.html" class="nav-brand">FMN-GPT</a>
|
| 14 |
-
<div class="nav-links">
|
| 15 |
-
<a href="blog.html">Blog</a>
|
| 16 |
-
<a href="status.html">Model Status</a>
|
| 17 |
-
<a href="https://huggingface.co/CompactAI" target="_blank">HuggingFace</a>
|
| 18 |
-
</div>
|
| 19 |
-
</div>
|
| 20 |
-
</nav>
|
| 21 |
-
|
| 22 |
-
<main>
|
| 23 |
-
<section class="page-header">
|
| 24 |
-
<div class="container">
|
| 25 |
-
<h1>Blog</h1>
|
| 26 |
-
<p>Updates on FMN-GPT development and research</p>
|
| 27 |
-
</div>
|
| 28 |
-
</section>
|
| 29 |
-
|
| 30 |
-
<section class="blog-section">
|
| 31 |
-
<div class="container">
|
| 32 |
-
<div class="blog-list" id="blog-list"></div>
|
| 33 |
-
</div>
|
| 34 |
-
</section>
|
| 35 |
-
</main>
|
| 36 |
-
|
| 37 |
-
<footer class="footer">
|
| 38 |
-
<div class="container">
|
| 39 |
-
<div class="footer-content">
|
| 40 |
-
<p class="footer-text">Built with curiosity over compute.</p>
|
| 41 |
-
<p class="footer-subtext">FMN-GPT by <a href="https://huggingface.co/CompactAI" target="_blank">CompactAI</a> - 2026</p>
|
| 42 |
-
</div>
|
| 43 |
-
</div>
|
| 44 |
-
</footer>
|
| 45 |
-
|
| 46 |
-
<script>
|
| 47 |
-
async function loadBlogPosts() {
|
| 48 |
-
const container = document.getElementById('blog-list');
|
| 49 |
-
try {
|
| 50 |
-
const response = await fetch('blog-posts.json');
|
| 51 |
-
const posts = await response.json();
|
| 52 |
-
|
| 53 |
-
if (posts.length === 0) {
|
| 54 |
-
container.innerHTML = '<div class="blog-empty"><p>No posts yet. Check back soon for updates.</p></div>';
|
| 55 |
-
return;
|
| 56 |
-
}
|
| 57 |
-
|
| 58 |
-
container.innerHTML = posts.map(post => `
|
| 59 |
-
<a href="blog-post.html?slug=${post.slug}" class="blog-card">
|
| 60 |
-
<div class="blog-meta">
|
| 61 |
-
<span class="blog-date">${post.date}</span>
|
| 62 |
-
<span class="blog-tag">${post.tag}</span>
|
| 63 |
-
</div>
|
| 64 |
-
<h2>${post.title}</h2>
|
| 65 |
-
<p>${post.excerpt}</p>
|
| 66 |
-
<span class="blog-read-more">Read more →</span>
|
| 67 |
-
</a>
|
| 68 |
-
`).join('');
|
| 69 |
-
} catch (e) {
|
| 70 |
-
container.innerHTML = '<div class="blog-empty"><p>No posts yet. Check back soon for updates.</p></div>';
|
| 71 |
-
}
|
| 72 |
-
}
|
| 73 |
-
|
| 74 |
-
loadBlogPosts();
|
| 75 |
-
</script>
|
| 76 |
-
</body>
|
| 77 |
-
</html>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|