-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
107 lines (96 loc) · 4.62 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Stats</title>
<!--
TEMPLATE-LATEX STATS
Author: Pablo Pizarro R. @ ppizarror.com
License:
The MIT License (MIT)
Copyright 2017 Pablo Pizarro R.
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal with the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the Software
is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or significant portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-->
<!-- Meta tags -->
<meta name="description" content="Estadísticas de compilación y descargas de los templates"/>
<meta name="googlebot" content="noindex, noarchive"/>
<meta name="robots" content="noindex, noarchive"/>
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:description" content="Estadísticas de compilación y descargas de los templates"/>
<meta name="twitter:image" content="https://latex.ppizarror.com/stats/icon.png"/>
<meta name="twitter:title" content="Template-Latex Stats"/>
<meta property="og:description" content="Estadísticas de compilación y descargas de los templates"/>
<meta property="og:image" content="https://latex.ppizarror.com/stats/icon.png"/>
<meta property="og:title" content="Template-Latex Stats"/>
<meta property="og:url" content="https://latex.ppizarror.com/stats"/>
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="res/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="res/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="res/favicon-16x16.png">
<link rel="manifest" href="res/manifest.json">
<link rel="mask-icon" href="res/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="res/favicon.ico">
<meta name="msapplication-config" content="res/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<!-- Hojas de estilo -->
<link rel="stylesheet" type="text/css" href="css/main.min.css" media="screen">
<link rel="stylesheet" type="text/css" href="css/tooltips.min.css" media="screen">
<link rel="stylesheet" type="text/css" href="css/jquery.dataTables.min.css" media="screen">
<link rel="stylesheet" type="text/css" href="css/hr.min.css" media="screen">
<link rel="stylesheet" type="text/css" href="css/progressBar.min.css" media="screen">
<!-- Importación librerías -->
<script src="js/jquery.min.js"></script>
<script src="js/Chart.bundle.min.js"></script>
<script src="js/jquery.dataTables.min.js"></script>
<script src="js/jstat.min.js"></script>
<script src="js/progressbar.min.js"></script>
<!-- Carga aplicación -->
<script src="app/config.js"></script>
<script src="app/about.js"></script>
<script src="app/prevdownload.js"></script>
<script src="app/utils.js"></script>
<script src="app/subrel.js"></script>
<script src="app/errors.js"></script>
<script src="app/init.js"></script>
</head>
<body>
<div id="content">
<div id="header">
<div id="progressLoading"></div>
<div id="templateName"><span id="templateNameTxt">Template-Latex Stats</span></div>
<div id="templateSelector">
<label for="mainSelector"></label><select id="mainSelector">
<option value="none">Seleccione un Template ...</option>
</select>
</div>
</div>
<div id="mainContent">
<div id="tableData" class="nonFixedTableData">
</div>
<div id="graphSection">
</div>
</div>
<div id="errorMsg" class="tooltip">
<div id="errorMsgText">
</div>
<div id="errorMoreInfoMsg" class="tooltiptext_errormsg">
</div>
</div>
<div id="footer">
</div>
</div>
</body>
</html>