mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
16 lines
358 B
Plaintext
16 lines
358 B
Plaintext
<html>
|
|
<head>
|
|
<title>
|
|
<if(typeof input.title === "string")>${input.title}</if>
|
|
<else>
|
|
<${input.title}/>
|
|
</else>
|
|
</title>
|
|
</head>
|
|
<body>
|
|
<if(typeof input.body === "string")>${input.body}</if>
|
|
<else>
|
|
<${input.body}/>
|
|
</else>
|
|
</body>
|
|
</html> |