mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 18:51:03 +01:00
beef97fd5d
Former-commit-id: e26a5701e00ec055f3bcf693c1980c7d22147310
20 lines
321 B
Plaintext
20 lines
321 B
Plaintext
doctype html
|
|
html(lang="en")
|
|
head
|
|
meta(charset="utf-8")
|
|
title Title
|
|
body
|
|
p ads
|
|
ul
|
|
li The name is {{.Name}}.
|
|
li The age is {{.Age}}.
|
|
|
|
each _,_ in .Emails
|
|
div An email is {{.}}
|
|
|
|
| {{ with .Jobs }}
|
|
each _,_ in .
|
|
div
|
|
An employer is {{.Employer}}
|
|
and the role is {{.Role}}
|
|
| {{ end }} |