Com AppML, você pode incluir HTML em HTML.
Incluindo HTML em HTML
Um bom exemplo disso, é a de incluir um rodapé HTML padrão em todas as suas páginas HTML.
Este é um exemplo de um arquivo contendo um rodapé padrão:
inc_footer.htm
<hr style="margin-top:10px;">
<p style="font-size:11px">2015© w3ii. All rights reserved.</p>
<hr>
Neste exemplo, o appml-include-html atributo é usado para incluir o arquivo "inc_footer.htm" :
Exemplo
<!DOCTYPE html>
<html lang="en-US">
<title>Customers</title>
<link rel="stylesheet" href="style.css">
<script src="http://www.w3ii.com/appml/2.0.3/appml.js"></script>
<body>
<h1>Customers</h1>
<table appml-data="customers.js">
<tr>
<th>Customer</th>
<th>City</th>
<th>Country</th>
</tr>
<tr appml-repeat="records">
<td>{{CustomerName}}</td>
<td>{{City}}</td>
<td>{{Country}}</td>
</tr>
</table>
<div appml-include-html="inc_footer.htm" ></div>
</body>
</html>
Tente você mesmo "