forked from labertasch/sightlytodomvc
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpage.html
21 lines (18 loc) · 817 Bytes
/
page.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!doctype html>
<html lang="en" data-sly-use.clientLib="${'/libs/granite/sightly/templates/clientlib.html'}">
<head>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<title>${properties.jcr:title}</title>
<sly data-sly-call="${clientLib.css @ categories='todo'}" data-sly-unwrap/>
</head>
<body data-sly-use.model="page.js">
<section id="todoapp" data-update-path="${model.updatePath}" data-sly-include="todoapp.html"></section>
<footer id="info">
<p>${'Double-click to edit a todo' @ i18n}</p>
<p><a href="http://twitter.com/sightlyio">${'Featuring Sightly' @ i18n}</a></p>
<p><a href="http://todomvc.com">${'Part of TodoMVC' @ i18n}</a></p>
</footer>
<sly data-sly-call="${clientLib.js @ categories='todo'}" data-sly-unwrap/>
</body>
</html>