-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
40 lines (35 loc) · 1.38 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Aplicación de ejemplo: Hogan.js</title>
<link type="text/css" rel="stylesheet" media="all" href="resources/css/bootstrap.min.css">
<link type="text/css" rel="stylesheet" media="all" href="resources/css/sticky-footer-navbar.css">
<link type="text/css" rel="stylesheet" media="all" href="resources/css/app.css">
<script type="text/javascript">
// Configure server locale for i18n support
var CURRENT_LOCALE = "en-en";
</script>
</head>
<body>
<div class="container">
<div class="wrap">
<header class="jumbotron">
<h1>Aplicación de ejemplo: Hogan.js</h1>
<p>Ejemplo con HTML + CSS + Javascript para mostrar el funcionamiento de Hogan.js con Require JS</p>
</header>
<section id="contenido">
<span>Cargando contenido... <img width="12" height="12" src="resources/images/loading.gif"></span>
</section>
</div>
<footer id="footer">
<div class="container">
<p class="text-muted credit">Desarrollado por: FJTORRES</p>
</div>
</footer>
</div>
<!-- Placed at the end of the document so the pages load faster -->
<script data-main="resources/scripts/app/main" src="resources/scripts/lib/require.js"></script>
</body>
</html>