← gallery
hello.canvakit.html
hello v1.0.0
Minimal canvakit template — static values only, no tool runtime required.
data sources
- note : static
{ "kind": "static", "value": "This template renders anywhere — no tools, no filesystem, nothing to wire up." }
source
open in playground →---
template: true
name: hello
version: 1.0.0
description: Minimal canvakit template — static values only, no tool runtime required.
author: canvakit
variables:
title: "Hello, canvakit"
dataSources:
note:
kind: static
value: "This template renders anywhere — no tools, no filesystem, nothing to wire up."
---
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>{{title}}</title>
<style>
body {
font-family: ui-sans-serif, system-ui, sans-serif;
padding: 3rem;
max-width: 40rem;
margin: 0 auto;
background: #faf9f7;
color: #1a1a1a;
}
h1 { font-size: 2rem; margin-bottom: 0.25rem; letter-spacing: -0.02em; }
p { line-height: 1.6; color: #555; }
</style>
</head>
<body>
<h1>{{title}}</h1>
<p>{{note}}</p>
</body>
</html>
install
curl -L canvakit.sh/api/template/hello -o hello.canvakit.html