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