Los últimos tutoriales de desarrollo web
 

AppML Incluye HTML


Con AppML, puede incluir HTML en HTML.


Incluyendo HTML en HTML

Un buen ejemplo de esto, es incluir un pie de página HTML estándar en todas sus páginas HTML.

Este es un ejemplo de un archivo que contiene un pie de página estándar:

inc_footer.htm

<hr style="margin-top:10px;">
<p style="font-size:11px">2015&copy; w3ii. All rights reserved.</p>
<hr>

En este ejemplo, el appml-include-html atributo se utiliza para incluir el archivo "inc_footer.htm" :

Ejemplo

<!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>
Inténtalo tú mismo "