Files
inline-html/test/fixtures/index.html

25 lines
704 B
HTML
Raw Normal View History

2015-07-22 15:51:14 -07:00
<!doctype html>
<html>
<head>
2015-07-23 08:28:22 -07:00
<link rel="stylesheet/less" href="main.less"/>
2015-07-22 15:51:14 -07:00
<style>
div {
padding-left: 2em;
}
#style {
background-image: url('./assets/person.png');
background-size: contain;
background-repeat: no-repeat;
}
</style>
</head>
<body>
<div id="link">Link</div>
<div id="import">Import</div>
<div id="style">Style</div>
<div id="attribute" style="background-image: url('./assets/person.png'); background-size: contain; background-repeat: no-repeat;">Attribute</div>
<img height="32px" width="32px" src="./assets/person.png"/>Image
2015-07-23 16:58:12 -07:00
{{> partial}}
{{helper}}
2015-07-22 15:51:14 -07:00
</body>
</html>