Integrate Simcoe Trades Journal Jekyll site with DigitalOcean App Platform spec

This commit is contained in:
Your Name
2026-07-31 11:12:33 -04:00
commit c5993bce0d
26 changed files with 1246 additions and 0 deletions
+51
View File
@@ -0,0 +1,51 @@
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% if page.title %}{{ page.title }} | {{ site.title }}{% else %}{{ site.title }} - {{ site.subtitle }}{% endif %}</title>
<meta name="description" content="{{ page.description | default: site.description }}">
<!-- Tailwind CSS via CDN -->
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
darkMode: 'class',
theme: {
extend: {
colors: {
amber: {
400: '#fbbf24',
500: '#f59e0b',
600: '#d97706',
},
slate: {
850: '#111827',
950: '#0b0f19',
}
}
}
}
}
</script>
<!-- Google Fonts -->
<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;800&family=Montserrat:wght@700;800;900&display=swap" rel="stylesheet">
<!-- Custom CSS -->
<link rel="stylesheet" href="{{ '/assets/css/style.css' | relative_url }}">
</head>
<body class="min-h-screen flex flex-col bg-slate-950 text-slate-100 antialiased selection:bg-amber-500 selection:text-slate-950">
{% include header.html %}
<main class="flex-grow">
{{ content }}
</main>
{% include footer.html %}
</body>
</html>