forked from caalma/tabla_comparativa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
75 lines (61 loc) · 2.09 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="cache-Control" content="no-cache, no-store, must-revalidate"/>
<meta http-equiv="pragma" content="no-cache"/>
<meta http-equiv="expires" content="0"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<meta name="HandheldFriendly" content="True"/>
<meta http-equiv="cleartype" content="on"/>
<link rel="alternate icon" type="image/png" href="./img/favicon.png">
<link rel="icon" type="image/svg+xml" href="./img/favicon.svg">
<title>Tabla comparativa</title>
<link rel="stylesheet" type="text/css" href="./css/estilo.css">
</head>
<body>
<header>
<h1>Traducciones comparadas</h1>
<p>Lojban, Inglés, Ruso, Español, Esperanto, ...</p>
<nav>
<h3>Textos disponibles</h3>
<ul id="menu"></ul>
</nav>
</header>
<hr>
<section id="info">
<div class="leng"></div>
<div class="titu"></div>
<div class="text"></div>
</section>
<a href="https://github.com/caalma/tabla_comparativa" class="github_repositorio" title="Alojado en Github"></a>
<script type="text/javascript" src="./js/js-yaml.min.js"></script>
<script type="text/javascript" src="./js/jquery-3.6.0.min.js"></script>
<script type="text/javascript" src="./js/underscore-min.js"></script>
<script type="text/javascript" src="./js/marked.min.js"></script>
<script type="text/javascript" src="./js/iniciar.js"></script>
<!-- templates -->
<script type="text/template" id="item-menu">
<li>
<button data-src="<%= ru %><%= id %>.yml"><%= id %></button>
</li>
</script>
<script type="text/template" id="item-lenguaje">
<button value="<%= id %>"><%= id %></button>
</script>
<script type="text/template" id="item-texto">
<div class="parrafo">
<div class="num"><%= n %></div>
<div class="leng">
<% _.each(d, function(v,k){%>
<div class="tex <%= k %>">
<span><%= k %></span>
<p><%= marked.parse(v) %></p>
</div>
<% }); %>
</div>
</div>
</script>
</body>
</html>