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