Files

297 lines
7.8 KiB
HTML
Raw Permalink Normal View History

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{TITLE}} — Tinqs Blog</title>
<meta name="description" content="{{DESCRIPTION}}">
<meta name="robots" content="index, follow">
<link rel="canonical" href="https://www.tinqs.com/blog/{{SLUG}}">
<meta property="og:type" content="article">
<meta property="og:url" content="https://www.tinqs.com/blog/{{SLUG}}">
<meta property="og:title" content="{{TITLE}}">
<meta property="og:description" content="{{OG_DESCRIPTION}}">
<meta property="og:image" content="{{OG_IMAGE}}">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="{{TITLE}}">
<meta name="twitter:description" content="{{OG_DESCRIPTION}}">
<meta name="twitter:image" content="{{OG_IMAGE}}">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BlogPosting",
"headline": "{{TITLE}}",
"datePublished": "{{DATE_ISO}}",
"author": {
"@type": "Person",
"name": "{{AUTHOR_NAME}}"
},
"publisher": {
"@type": "Organization",
"name": "Tinqs Limited",
"url": "https://www.tinqs.com"
},
"description": "{{DESCRIPTION}}"
}
</script>
<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=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
2026-06-02 22:50:20 +01:00
<style>
/* ── Tinqs Studio brand — post styles ── */
:root {
/* Studio near-black base */
--c-bg: #0B0C0E;
--c-bg-raised: #15171A;
/* Foreground */
--c-fg: #ECEEF1;
--c-muted: #8A95A3;
/* Family accents */
--c-lime: #B6FF3C;
--c-violet: #7C5CFF;
/* Borders */
--c-border: rgba(255,255,255,.07);
--c-border-strong: rgba(255,255,255,.12);
}
*, *::before, *::after { box-sizing: border-box; }
2026-06-02 22:50:20 +01:00
html { background: var(--c-bg); }
body {
margin: 0;
padding: 0;
background: var(--c-bg);
color: var(--c-fg);
font-family: 'Inter', system-ui, -apple-system, sans-serif;
font-size: 16px;
line-height: 1.6;
-webkit-font-smoothing: antialiased;
}
/* ── Post container ── */
.post {
background: var(--c-bg);
max-width: 720px;
margin: 0 auto;
padding: 48px 24px 60px;
}
/* ── Back link ── */
.post__back {
color: var(--c-muted);
text-decoration: none;
font-size: 0.875rem;
display: inline-block;
margin-bottom: 24px;
transition: color 0.15s;
}
.post__back:hover { color: var(--c-lime); }
/* ── Gradient title — lime → violet ── */
2026-06-02 22:50:20 +01:00
.post__title {
font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
background: linear-gradient(90deg, var(--c-lime), var(--c-violet));
2026-06-02 22:50:20 +01:00
-webkit-background-clip: text;
background-clip: text;
color: transparent;
font-weight: 700;
font-size: 2.2rem;
line-height: 1.2;
margin: 0 0 16px;
2026-06-02 22:50:20 +01:00
}
/* ── Date pill ── */
.post__date {
display: inline-block;
font-family: 'JetBrains Mono', ui-monospace, 'SF Mono', Consolas, monospace;
2026-06-02 22:50:20 +01:00
font-size: 0.72rem;
letter-spacing: 0.18em;
2026-06-02 22:50:20 +01:00
text-transform: uppercase;
color: var(--c-muted);
border: 1px solid var(--c-border);
2026-06-02 22:50:20 +01:00
border-radius: 999px;
padding: 4px 14px;
margin-bottom: 16px;
}
/* ── Lead ── */
.post__lead {
color: var(--c-muted);
2026-06-02 22:50:20 +01:00
font-size: 1.08rem;
line-height: 1.7;
}
/* ── Body ── */
.post__body { font-size: 1rem; line-height: 1.7; }
.post__body p { margin: 14px 0; }
2026-06-02 22:50:20 +01:00
.post__body h2 {
font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
font-weight: 600;
font-size: 1.6rem;
2026-06-02 22:50:20 +01:00
margin: 54px 0 6px;
padding-left: 16px;
border-left: 4px solid var(--c-lime);
line-height: 1.3;
2026-06-02 22:50:20 +01:00
}
.post__body h3 {
font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
font-weight: 500;
color: var(--c-violet);
font-size: 1.15rem;
2026-06-02 22:50:20 +01:00
margin: 30px 0 4px;
}
.post__body h4, .post__body h5, .post__body h6 {
margin: 20px 0 4px;
}
2026-06-02 22:50:20 +01:00
/* ── Inline code ── */
.post__body code {
font-family: 'JetBrains Mono', ui-monospace, 'SF Mono', Consolas, monospace;
font-size: 0.84em;
background: var(--c-bg-raised);
color: var(--c-lime);
2026-06-02 22:50:20 +01:00
padding: 2px 6px;
border-radius: 4px;
border: 1px solid var(--c-border);
2026-06-02 22:50:20 +01:00
}
/* ── Code blocks ── */
2026-06-02 22:50:20 +01:00
.post__body pre {
background: var(--c-bg);
border: 1px solid var(--c-border);
border-radius: 8px;
2026-06-02 22:50:20 +01:00
padding: 16px 18px;
overflow-x: auto;
margin: 14px 0;
font-family: 'JetBrains Mono', ui-monospace, 'SF Mono', Consolas, monospace;
font-size: 0.83rem;
2026-06-02 22:50:20 +01:00
line-height: 1.55;
color: var(--c-fg);
2026-06-02 22:50:20 +01:00
}
.post__body pre code {
background: transparent;
padding: 0;
border: none;
font-size: inherit;
color: inherit;
border-radius: 0;
}
/* ── Blockquote ── */
2026-06-02 22:50:20 +01:00
.post__body blockquote {
background: rgba(124, 92, 255, 0.06);
border: 1px solid rgba(124, 92, 255, 0.15);
border-left: 4px solid var(--c-violet);
border-radius: 0 8px 8px 0;
2026-06-02 22:50:20 +01:00
padding: 16px 18px;
margin: 18px 0;
color: var(--c-fg);
2026-06-02 22:50:20 +01:00
font-size: 0.94rem;
}
/* ── Links ── */
.post__body a { color: var(--c-lime); text-decoration: underline; text-underline-offset: 3px; }
.post__body a:hover { color: var(--c-violet); }
2026-06-02 22:50:20 +01:00
/* ── Strong ── */
.post__body strong { color: var(--c-lime); font-weight: 600; }
2026-06-02 22:50:20 +01:00
/* ── HR ── */
.post__body hr {
border: none;
border-top: 1px solid var(--c-border);
2026-06-02 22:50:20 +01:00
margin: 32px 0;
}
/* ── Figures ── */
.post__body figure { margin: 20px 0; }
2026-06-02 22:50:20 +01:00
.post__body figure img {
max-width: 100%;
2026-06-02 22:50:20 +01:00
border-radius: 12px;
border: 1px solid var(--c-border);
2026-06-02 22:50:20 +01:00
}
.post__body figcaption {
color: var(--c-muted);
2026-06-02 22:50:20 +01:00
font-size: 0.85rem;
margin-top: 6px;
}
/* ── Lists ── */
.post__body ul, .post__body ol { padding-left: 1.5em; margin: 10px 0; }
.post__body li { margin: 4px 0; }
/* ── Author ── */
.post__author {
display: flex;
align-items: center;
gap: 14px;
margin-top: 48px;
padding-top: 24px;
border-top: 1px solid var(--c-border);
}
.post__author-avatar {
width: 48px;
height: 48px;
border-radius: 50%;
background: var(--c-violet);
color: #fff;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 0.85rem;
flex-shrink: 0;
}
.post__author-info {
font-size: 0.85rem;
color: var(--c-muted);
line-height: 1.4;
}
.post__author-name {
color: var(--c-fg);
font-weight: 600;
2026-06-02 22:50:20 +01:00
}
</style>
</head>
<body>
<!-- POST -->
<article class="post">
<a href="/blog/" class="post__back">&larr; All Posts</a>
<span class="post__date">{{DATE_DISPLAY}}</span>
<h1 class="post__title">{{TITLE}}</h1>
<p class="post__lead">{{LEAD}}</p>
<div class="post__body">
{{BODY}}
</div>
<div class="post__author">
<div class="post__author-avatar">{{AUTHOR_INITIALS}}</div>
<div class="post__author-info">
<span class="post__author-name">{{AUTHOR_NAME}}</span><br>
{{AUTHOR_ROLE}}
</div>
</div>
</article>
</body>
</html>