Applications

Katana – Blade powered static site & blog generator

Published

Katana is a PHP static site & blog generator with markdown support. Using it you can deploy with Github pages or your own hosting environment.

What I like is that it utilizes Blade to build the templates and files instead of straight markdown and YAML frontmatter. Here is an example of a blog post:

@extends('_includes.blog_post_base')
 
@section('post::title', 'My Title')
@section('post::date', 'March 9, 2016')
@section('post::brief', 'My subtitle goes here')
@section('pageTitle')- @yield('post::title')@stop
 
@section('post_body')
 
@markdown
This is my body content
 
> With a blockquote
@endmarkdown
 
@stop

I think the only downside is if you rely on your editors markdown syntax features. But I’m sure you could get around that by having the body in it’s own file and using a Blade @include.

Eric L. Barnes photo

Eric is the creator of Laravel News and has been covering Laravel since 2012.

Sponsored

laravelcloud logo
Laravel Cloud

Easily create and manage your servers and deploy your Laravel applications in seconds.

Visit Laravel Cloud

The latest

View all →
CPX: The Composer Package Executor for PHP image

CPX: The Composer Package Executor for PHP

Read article
Laravel AI SDK Adds Human-in-the-Loop Tool Approval image

Laravel AI SDK Adds Human-in-the-Loop Tool Approval

Read article
Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals image

Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals

Read article
Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs image

Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs

Read article
Blade Formatting in Laravel Pint image

Blade Formatting in Laravel Pint

Read article
Inertia DevTools Is Now on the Chrome Web Store image

Inertia DevTools Is Now on the Chrome Web Store

Read article