19 lines
324 B
HTML
19 lines
324 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>{ .community.name }</title>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<h1> TITLE </h1>
|
||
|
<h2> {{ REAL BRACKETS }} </h2>
|
||
|
|
||
|
<section>
|
||
|
{{#for args.notes |$note, $i|}}
|
||
|
<h3>Note no. {{$i}}</h3>
|
||
|
{{#template note_display ($note)}}
|
||
|
{{/for}}
|
||
|
</section>
|
||
|
</body>
|
||
|
</html>
|