Skip to main content
Version: 2.0.x

HTML Templating Example

zio-http-example/src/main/scala/example/HtmlTemplating.scala
package example

import zio._

import zio.http._

object HtmlTemplating extends ZIOAppDefault {
// Importing everything from `zio.html`
import zio.http.template._

def app: HttpApp[Any] = {
// Html response takes in a `Html` instance.
Handler.html {

// Support for default Html tags
html(
// Support for child nodes
head(
title("ZIO Http"),
),
body(
div(
// Support for css class names
css := "container text-align-left",
h1("Hello World"),
ul(
// Support for inline css
styles := "list-style: none",
li(
// Support for attributes
a(href := "/hello/world", "Hello World"),
),
li(
a(href := "/hello/world/again", "Hello World Again"),
),

// Support for Seq of Html elements
(2 to 10) map { i =>
li(
a(href := s"/hello/world/i", s"Hello World $i"),
)
},
),
),
),
)
}
}.toHttpApp

def run = Server.serve(app).provide(Server.default)
}