-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
377 lines (342 loc) · 17.7 KB
/
blog.html
File metadata and controls
377 lines (342 loc) · 17.7 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Text Forge Blog - Latest news, updates, and development insights for the modular text editor.">
<title>Blog - Text Forge</title>
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" href="css/styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<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">
<style>
.blog-hero {
padding: 8rem 0 4rem;
background:
radial-gradient(ellipse 80% 50% at 50% -20%, rgba(99, 102, 241, 0.15), transparent),
var(--color-bg);
}
.blog-hero-content {
text-align: center;
max-width: 700px;
margin: 0 auto;
}
.blog-hero-title {
font-size: 3rem;
font-weight: 700;
margin-bottom: 1rem;
background: var(--gradient-text);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.blog-hero-subtitle {
font-size: 1.25rem;
color: var(--color-text-secondary);
}
.blog-section {
padding: 4rem 0 6rem;
}
.blog-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 2rem;
}
.blog-card {
background: var(--color-surface);
border-radius: var(--radius-xl);
border: 1px solid var(--color-border);
overflow: hidden;
transition: all var(--transition-base);
}
.blog-card:hover {
transform: translateY(-4px);
border-color: var(--color-primary);
box-shadow: var(--shadow-lg), 0 0 30px rgba(99, 102, 241, 0.15);
}
.blog-card-featured {
grid-column: span 2;
}
.blog-card-content {
padding: 1.5rem 2rem 2rem;
}
.blog-card-meta {
display: flex;
align-items: center;
gap: 1rem;
margin-bottom: 1rem;
}
.blog-card-date {
font-size: 0.875rem;
color: var(--color-text-muted);
}
.blog-card-tag {
display: inline-block;
padding: 0.25rem 0.75rem;
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.05em;
border-radius: var(--radius-2xl);
background: rgba(99, 102, 241, 0.2);
color: var(--color-primary-light);
}
.blog-card-tag.release {
background: rgba(34, 211, 238, 0.2);
color: var(--color-accent);
}
.blog-card-tag.feature {
background: rgba(168, 85, 247, 0.2);
color: var(--color-accent-secondary);
}
.blog-card-title {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 0.75rem;
line-height: 1.3;
}
.blog-card-featured .blog-card-title {
font-size: 2rem;
}
.blog-card-excerpt {
font-size: 1rem;
color: var(--color-text-secondary);
line-height: 1.7;
margin-bottom: 1.5rem;
}
.blog-card-link {
display: inline-flex;
align-items: center;
gap: 0.5rem;
font-weight: 600;
color: var(--color-primary-light);
transition: gap var(--transition-fast);
}
.blog-card-link:hover {
gap: 0.75rem;
}
.blog-card-link svg {
transition: transform var(--transition-fast);
}
.blog-card:hover .blog-card-link svg {
transform: translateX(4px);
}
.version-badge {
display: inline-block;
padding: 0.25rem 0.5rem;
font-size: 0.875rem;
font-family: var(--font-mono);
font-weight: 500;
background: var(--color-bg-tertiary);
border-radius: var(--radius-sm);
color: var(--color-accent);
margin-right: 0.5rem;
}
@media (max-width: 768px) {
.blog-hero-title {
font-size: 2.25rem;
}
.blog-grid {
grid-template-columns: 1fr;
}
.blog-card-featured {
grid-column: span 1;
}
.blog-card-featured .blog-card-title {
font-size: 1.5rem;
}
}
</style>
</head>
<body>
<header class="header">
<nav class="nav container">
<a href="index.html" class="nav-logo">
<img src="assets/images/logo.png" alt="Text Forge Logo" class="logo-img">
<span class="logo-text">Text Forge</span>
</a>
<button class="nav-toggle" aria-label="Toggle navigation">
<span></span>
<span></span>
<span></span>
</button>
<ul class="nav-menu">
<li><a href="features.html" class="nav-link">Features</a></li>
<li><a href="index.html#screenshots" class="nav-link">Screenshots</a></li>
<li><a href="blog.html" class="nav-link">Blog</a></li>
<li><a href="download.html" class="nav-link active">Download</a></li>
<li><a href="https://text-forge.github.io/docs/" target="_blank" class="nav-link">Docs</a></li>
<li><a href="https://text-forge.github.io/marketplace/" target="_blank" class="nav-link">Marketplace</a></li>
<li><a href="https://github.com/text-forge/text-forge" class="nav-link nav-link-github" target="_blank">
<svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor"><path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/></svg>
GitHub
</a></li>
</ul>
</nav>
</header>
<main>
<section class="blog-hero">
<div class="container">
<div class="blog-hero-content">
<h1 class="blog-hero-title">Blog & News</h1>
<p class="blog-hero-subtitle">Stay updated with the latest releases, features, and development insights from the Text Forge team.</p>
</div>
</div>
</section>
<section class="blog-section">
<div class="container">
<div class="blog-grid" id="blog-posts">
<article class="blog-card blog-card-featured">
<div class="blog-card-content">
<div class="blog-card-meta">
<span class="blog-card-tag release">Release</span>
<span class="blog-card-date">November 20, 2025</span>
</div>
<h2 class="blog-card-title">
<span class="version-badge">v0.2-rc1</span>
Template System & Synchronized Preview Scrolling
</h2>
<p class="blog-card-excerpt">
We're excited to announce the first release candidate for version 0.2! This release introduces the powerful new Template System, allowing you to create reusable document structures with customizable placeholders. We've also added synchronized preview scrolling, so your preview pane follows along as you edit.
</p>
<a href="https://github.com/text-forge/text-forge/releases" class="blog-card-link" target="_blank">
Read more
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><line x1="5" y1="12" x2="19" y2="12"/><polyline points="12 5 19 12 12 19"/></svg>
</a>
</div>
</article>
<article class="blog-card">
<div class="blog-card-content">
<div class="blog-card-meta">
<span class="blog-card-tag feature">Preview</span>
<span class="blog-card-date">Coming Soon</span>
</div>
<h2 class="blog-card-title">Upcoming: Bookmarks & Smart Indentation</h2>
<p class="blog-card-excerpt">
Get a sneak peek at what's coming next: bookmark support for quick navigation, mode-driven indentation that adapts to your language, and UI filters for a cleaner workspace.
</p>
<a href="https://github.com/text-forge/text-forge/discussions" class="blog-card-link" target="_blank">
Join discussion
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><line x1="5" y1="12" x2="19" y2="12"/><polyline points="12 5 19 12 12 19"/></svg>
</a>
</div>
</article>
<article class="blog-card">
<div class="blog-card-content">
<div class="blog-card-meta">
<span class="blog-card-tag release">Release</span>
<span class="blog-card-date">October 9, 2025</span>
</div>
<h2 class="blog-card-title">
<span class="version-badge">v0.2-beta2</span>
Theme-Aware Syntax Highlighting
</h2>
<p class="blog-card-excerpt">
Syntax highlighting colors now automatically adapt to your chosen theme. Plus, custom preview formats let you see your documents exactly how you want them.
</p>
<a href="https://github.com/text-forge/text-forge/releases" class="blog-card-link" target="_blank">
View release
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><line x1="5" y1="12" x2="19" y2="12"/><polyline points="12 5 19 12 12 19"/></svg>
</a>
</div>
</article>
<article class="blog-card">
<div class="blog-card-content">
<div class="blog-card-meta">
<span class="blog-card-tag release">Release</span>
<span class="blog-card-date">September 25, 2025</span>
</div>
<h2 class="blog-card-title">
<span class="version-badge">v0.2-beta1</span>
Introducing the Marketplace
</h2>
<p class="blog-card-excerpt">
The first beta of v0.2 brings theme support, the community Marketplace for sharing extensions, and the Text Forge Project Module (TFPM) for better project management.
</p>
<a href="https://github.com/text-forge/text-forge/releases" class="blog-card-link" target="_blank">
View release
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><line x1="5" y1="12" x2="19" y2="12"/><polyline points="12 5 19 12 12 19"/></svg>
</a>
</div>
</article>
<article class="blog-card">
<div class="blog-card-content">
<div class="blog-card-meta">
<span class="blog-card-tag">Community</span>
<span class="blog-card-date">Ongoing</span>
</div>
<h2 class="blog-card-title">Explore the Mode Library</h2>
<p class="blog-card-excerpt">
Discover community-created modes for different languages and file formats. From Markdown to configuration files, find the perfect mode for your workflow.
</p>
<a href="https://github.com/text-forge/mode-library" class="blog-card-link" target="_blank">
Browse modes
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><line x1="5" y1="12" x2="19" y2="12"/><polyline points="12 5 19 12 12 19"/></svg>
</a>
</div>
</article>
<article class="blog-card">
<div class="blog-card-content">
<div class="blog-card-meta">
<span class="blog-card-tag">Guide</span>
<span class="blog-card-date">Updated</span>
</div>
<h2 class="blog-card-title">Getting Started with Text Forge</h2>
<p class="blog-card-excerpt">
New to Text Forge? Check out our comprehensive documentation to learn about modules, modes, action scripts, and how to customize your editing experience.
</p>
<a href="https://text-forge.github.io/docs/" class="blog-card-link" target="_blank">
Read docs
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><line x1="5" y1="12" x2="19" y2="12"/><polyline points="12 5 19 12 12 19"/></svg>
</a>
</div>
</article>
</div>
</div>
</section>
</main>
<footer class="footer">
<div class="container">
<div class="footer-content">
<div class="footer-brand">
<a href="index.html" class="footer-logo">
<img src="assets/images/logo.png" alt="Text Forge Logo" class="logo-img">
<span>Text Forge</span>
</a>
<p class="footer-tagline">Simplicity to start, power to grow!</p>
</div>
<div class="footer-links">
<div class="footer-column">
<h4>Project</h4>
<ul>
<li><a href="https://github.com/text-forge/text-forge" target="_blank">GitHub</a></li>
<li><a href="https://github.com/text-forge/text-forge/releases" target="_blank">Releases</a></li>
<li><a href="https://text-forge.github.io/docs/" target="_blank">Documentation</a></li>
</ul>
</div>
<div class="footer-column">
<h4>Community</h4>
<ul>
<li><a href="https://github.com/text-forge/text-forge/discussions" target="_blank">Discussions</a></li>
<li><a href="https://text-forge.github.io/marketplace" target="_blank">Marketplace</a></li>
<li><a href="https://github.com/text-forge/mode-library" target="_blank">Mode Library</a></li>
</ul>
</div>
<div class="footer-column">
<h4>More</h4>
<ul>
<li><a href="blog.html">Blog</a></li>
<li><a href="https://github.com/text-forge/text-forge/blob/main/LICENSE" target="_blank">License (MIT)</a></li>
</ul>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2025 Text Forge. Open source under MIT License.</p>
</div>
</div>
</footer>
<script src="js/main.js"></script>
</body>
</html>