diff --git a/content/blog-index/module.md b/content/blog-index/module.md new file mode 100644 index 0000000..5351485 --- /dev/null +++ b/content/blog-index/module.md @@ -0,0 +1,21 @@ +# Blog + +
+slug: blog +published: 03/15/2026 +author: Gopher Guides +seo_description: Articles, tutorials, and guides about Hype — the dynamic Markdown engine for technical writers. +tags: blog +
+ +Tutorials, guides, and updates from the Hype project. + +## Tutorials + +- [Single-Source Documentation](/single-source-docs/) — Use one Markdown file to generate your README and website docs +- [Deploying a Hype Blog with Docker](/deploying-with-docker/) — Deploy with Dokploy, Heroku, or Docker Compose +- [Getting Started with Hype](/getting-started/) — Install Hype and create your first dynamic document + +## Documentation + +Looking for reference docs? See the [documentation section](/docs/). diff --git a/layouts/_default/list.html b/layouts/_default/list.html index 56c1d0a..cb59dd3 100644 --- a/layouts/_default/list.html +++ b/layouts/_default/list.html @@ -52,48 +52,41 @@

Build-Time Validation

- + {{if .Articles}}
-
- $ - ls -la articles/ -
-
- total {{len .Articles}} +
+
+ $ + ls articles/ | head -3 +
+ + view all → +
-
- {{range .Articles}} +
+ {{range $i, $a := .Articles}}{{if lt $i 3}}
- {{.FormattedDate}} + {{$a.FormattedDate}}

- - {{.Title}} + + {{$a.Title}}

- {{if .SEODescription}} -

{{.SEODescription}}

+ {{if $a.SEODescription}} +

{{$a.SEODescription}}

{{end}} -
- {{if .Author}}@{{.Author}}{{end}} - {{if .ReadingTime}}~{{.ReadingTime}}m{{end}} - {{if .Tags}} -
- {{range .Tags}}#{{.}}{{end}} -
- {{end}} -
- +
- {{end}} + {{end}}{{end}}
{{end}} diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html index 6b94054..9f1aaad 100644 --- a/layouts/partials/footer.html +++ b/layouts/partials/footer.html @@ -3,7 +3,7 @@
Docs - Blog + Blog GitHub 𝕏 RSS diff --git a/layouts/partials/header.html b/layouts/partials/header.html index 3a7deaa..2030bed 100644 --- a/layouts/partials/header.html +++ b/layouts/partials/header.html @@ -7,7 +7,7 @@