github.com/servernoj/jade@v0.0.0-20231225191405-efec98d19db1/example/v1.0/actions/template.jade (about)

     1  doctype html
     2  html(lang="en")
     3  	head
     4  		meta(charset="utf-8")
     5  		title Title
     6  	body
     7  		p ads
     8  		ul
     9  			li The name is {{.Name}}.
    10  			li The age is {{.Age}}.
    11  
    12  		each _,_ in .Emails
    13  			div An email is {{.}}
    14  
    15  		| {{ with .Jobs }}
    16  			each _,_ in .
    17  				div.
    18  				 An employer is {{.Employer}}
    19  				 and the role is {{.Role}}
    20  		| {{ end }}