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.
- package/.bashrc +1 -0
- package/README.md +203 -0
- package/content/keeping-things-simple.md +13 -0
- package/content/three-small-steps.md +14 -0
- package/content/welcome-to-the-blog.md +14 -0
- package/dist/about/index.html +60 -0
- package/dist/assets/input.css +92 -0
- package/dist/assets/site.css +630 -0
- package/dist/blog/about/index.html +88 -0
- package/dist/blog/building-a-static-site-generator/index.html +86 -0
- package/dist/blog/hello-world/index.html +86 -0
- package/dist/blog/index.html +125 -0
- package/dist/blog/keeping-things-simple/index.html +70 -0
- package/dist/blog/three-small-steps/index.html +70 -0
- package/dist/blog/welcome-to-the-blog/index.html +70 -0
- package/dist/blog/why-kiss-matters/index.html +86 -0
- package/dist/contact/index.html +83 -0
- package/dist/index.html +56 -0
- package/dist/tags/index.html +65 -0
- package/dist/tags/javascript/index.html +125 -0
- package/dist/tags/webdev/index.html +125 -0
- package/output/assets/input.css +92 -0
- package/output/assets/site.css +630 -0
- package/package.json +31 -0
- package/pages/about.md +21 -0
- package/pages/contact.md +44 -0
- package/smirky.js +391 -0
- package/theme/assets/input.css +92 -0
- package/theme/assets/site.css +630 -0
- package/theme/blog.html +8 -0
- package/theme/debug.html +5 -0
- package/theme/index.html +10 -0
- package/theme/layout.html +23 -0
- package/theme/navbar.html +16 -0
- package/theme/page.html +5 -0
- package/theme/partials/blog_post_card.html +12 -0
- package/theme/partials/footer.html +4 -0
- package/theme/partials/head.html +2 -0
- package/theme/partials/navbar.html +14 -0
- package/theme/partials/tag_pill.html +5 -0
- package/theme/post.html +10 -0
- package/theme/site.json +8 -0
- package/theme/tags.html +8 -0
|
@@ -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
|
+
|
package/theme/post.html
ADDED
package/theme/site.json
ADDED