mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
11 lines
266 B
Plaintext
11 lines
266 B
Plaintext
<!DOCTYPE html>
|
|
html lang="en"
|
|
head
|
|
title -- Marko Templating Engine
|
|
body
|
|
h1 -- Hello ${data.name}!
|
|
ul if(data.colors.length)
|
|
li for(color in data.colors)
|
|
${color}
|
|
div else
|
|
-- No colors! |