smirky 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. package/.bashrc +1 -0
  2. package/README.md +203 -0
  3. package/content/keeping-things-simple.md +13 -0
  4. package/content/three-small-steps.md +14 -0
  5. package/content/welcome-to-the-blog.md +14 -0
  6. package/dist/about/index.html +60 -0
  7. package/dist/assets/input.css +92 -0
  8. package/dist/assets/site.css +630 -0
  9. package/dist/blog/about/index.html +88 -0
  10. package/dist/blog/building-a-static-site-generator/index.html +86 -0
  11. package/dist/blog/hello-world/index.html +86 -0
  12. package/dist/blog/index.html +125 -0
  13. package/dist/blog/keeping-things-simple/index.html +70 -0
  14. package/dist/blog/three-small-steps/index.html +70 -0
  15. package/dist/blog/welcome-to-the-blog/index.html +70 -0
  16. package/dist/blog/why-kiss-matters/index.html +86 -0
  17. package/dist/contact/index.html +83 -0
  18. package/dist/index.html +56 -0
  19. package/dist/tags/index.html +65 -0
  20. package/dist/tags/javascript/index.html +125 -0
  21. package/dist/tags/webdev/index.html +125 -0
  22. package/output/assets/input.css +92 -0
  23. package/output/assets/site.css +630 -0
  24. package/package.json +31 -0
  25. package/pages/about.md +21 -0
  26. package/pages/contact.md +44 -0
  27. package/smirky.js +391 -0
  28. package/theme/assets/input.css +92 -0
  29. package/theme/assets/site.css +630 -0
  30. package/theme/blog.html +8 -0
  31. package/theme/debug.html +5 -0
  32. package/theme/index.html +10 -0
  33. package/theme/layout.html +23 -0
  34. package/theme/navbar.html +16 -0
  35. package/theme/page.html +5 -0
  36. package/theme/partials/blog_post_card.html +12 -0
  37. package/theme/partials/footer.html +4 -0
  38. package/theme/partials/head.html +2 -0
  39. package/theme/partials/navbar.html +14 -0
  40. package/theme/partials/tag_pill.html +5 -0
  41. package/theme/post.html +10 -0
  42. package/theme/site.json +8 -0
  43. package/theme/tags.html +8 -0
@@ -0,0 +1,4 @@
1
+ <footer class="mt-12 border-t border-slate-200 py-6 text-sm text-slate-500 text-center">
2
+ {{ site_footer }}
3
+ </footer>
4
+
@@ -0,0 +1,2 @@
1
+ <link rel="stylesheet" href="/assets/site.css">
2
+
@@ -0,0 +1,14 @@
1
+ <nav class="bg-white shadow-sm">
2
+ <div class="max-w-5xl mx-auto px-4 h-16 flex items-center justify-between">
3
+
4
+ <a href="/" class="text-xl font-bold text-indigo-600">
5
+ {{ site_title }}
6
+ </a>
7
+
8
+ <div class="space-x-6 text-sm font-medium">
9
+ {{ navbar_links }}
10
+ </div>
11
+
12
+ </div>
13
+ </nav>
14
+
@@ -0,0 +1,5 @@
1
+ <a href="/tags/{{ tag_slug }}/"
2
+ class="inline-block bg-indigo-100 text-indigo-700 text-xs px-2 py-1 rounded-full">
3
+ {{ tag_name }}
4
+ </a>
5
+
@@ -0,0 +1,10 @@
1
+ <article class="prose prose-slate max-w-none">
2
+ <h1>{{ title }}</h1>
3
+
4
+ <div class="flex flex-wrap gap-2 mb-6">
5
+ {{ tag_pills }}
6
+ </div>
7
+
8
+ {{ content }}
9
+ </article>
10
+
@@ -0,0 +1,8 @@
1
+ {
2
+ "site": {
3
+ "title": "My Site",
4
+ "description": "A simple static site powered by a KISS SSG.",
5
+ "footer": "© 2026 My Site"
6
+ }
7
+ }
8
+
@@ -0,0 +1,8 @@
1
+ <section class="space-y-8">
2
+ <h1 class="text-3xl font-bold text-slate-900">Tags</h1>
3
+
4
+ <div class="flex flex-wrap gap-3">
5
+ {{ content }}
6
+ </div>
7
+ </section>
8
+