app/html/index.html
<!DOCTYPE html>
<html>
<head>
<title>单页Demo</title>
<meta charset="UTF-8">
<link type="image/x-icon" href="logo.ico" rel="shortcut icon"/>
<link href="logo.ico" rel="bookmark icon"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body ms-controller="test">
<div id="content">
<div>
图标字体:
<i class="icon icon-sliderR"></i>
</div>
<input ms-duplex="@name">
<p>Hello,{{@name}}!</p>
<ul>
<li ms-for="($index,el) in @array">{{$index}}--{{el}}</li>
</ul>
</div>
</body>
</html>