Liz Logo Liz
Built with Liz

Modern Web Framework Built for Speed

Liz combines the power of Templ with modern web development practices. File-based routing, automatic refresh, and Tailwind compatibility out of the box.

page.templ
package about

import "liz"

var PageMetadata = liz.Metadata{
  Title:       "About me",
  Description: "Learn more about me",
}

templ Page() {
  <h1>About Page</h1>
  <p>This is the about page.</p>
}

Everything You Need

Liz provides all the modern tools and features you need to build fast, maintainable web applications.

File-Based Routing

Intuitive routing system based on your file structure. No configuration needed.

routes/
├── layout.templ
├── page.templ
└── blog/
└── page.templ

Dev Server with Hot Reload

Lightning-fast development with automatic refresh. See changes instantly.

$ liz dev
Server running on :5490
Watching for changes...

Tailwind Compatible

First-class Tailwind CSS support with automatic purging and optimization.

<div class="bg-blue-500 text-white
p-4 rounded-lg shadow-lg">
Hello Tailwind!
</div>

Built on Templ

Leverages the power and type safety of Templ templates for robust applications.

templ HomePage() {
<h1>Welcome</h1>
}

Component System

Reusable components with props and composition for maintainable code.

templ Button(text string) {
<button>{text}</button>
}

CLI Tools

Powerful command-line interface for scaffolding, building, and deploying.

$ liz init
$ liz dev
$ liz build

Get Started in Minutes

terminal
# Install Liz
go install github.com/bliss-solutions/liz/cmd/liz@latest
# Create a new project
liz init
# Start developing
cd my-awesome-app && liz dev