-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.njk
More file actions
39 lines (32 loc) · 1.37 KB
/
blog.njk
File metadata and controls
39 lines (32 loc) · 1.37 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
---
layout: base.njk
title: Blog
description: Thoughts on building better developer tools.
---
<h1 style="margin-bottom: 20px;">BLOG</h1>
<p><a href="/feed.xml">RSS Feed</a></p>
{%- for post in collections.post | reverse -%}
<article style="margin: 40px 0; padding-bottom: 40px; border-bottom: 1px solid var(--grey);">
<h2><a href="{{ post.url }}">{{ post.data.title }}</a></h2>
<p style="color: var(--grey); font-size: 14px;">{{ post.date | dateReadable }}</p>
<p>{{ post.data.excerpt }}</p>
<a href="{{ post.url }}">Read more →</a>
</article>
{%- endfor -%}
{% if collections.post.length == 0 %}
<section class="hero">
<h2 style="color: var(--yellow); font-size: 32px; letter-spacing: -2px;">COMING SOON</h2>
<p style="font-size: 20px; margin-top: 20px;">TOPICS WE'LL COVER:<br>
<span style="color: var(--yellow);">THE REAL TALK.</span></p>
</section>
<div class="groove-card">
<ul style="font-size: 18px;">
<li>Reducing PR review time by 94%</li>
<li>Eliminating context switching</li>
<li>Building tools that scale</li>
<li>Security without slowdown</li>
</ul>
</div>
{% endif %}
<h2 style="font-size: 24px; letter-spacing: -1px; margin-top: 60px;">STAY IN THE LOOP</h2>
<p style="font-size: 18px;">Get notified: <a href="mailto:ship-faster@codegroove.dev" style="font-weight: bold;">ship-faster@codegroove.dev</a></p>