-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
executable file
·116 lines (111 loc) · 4.4 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
108
109
110
111
112
113
114
115
116
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="es" lang="es">
<head>
<title>Juez Virtual Discant</title>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-56203069-1', 'auto');
ga('send', 'pageview');
</script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href='http://fonts.googleapis.com/css?family=Fira+Sans:400,500italic,700italic' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen, projection, tv" />
<link rel="stylesheet" href="css/style-print.css" type="text/css" media="print" />
</head>
<body>
<header class="lp-header" id="header">
<div class="judge-header">
<h1>Juez Virtual <span>Discant</span></h1>
<p>Juez para el curso de colegios, Capítulo Javeriano ACM</p>
</div>
<main class="container">
<div class="row">
<br />
<div class="col-xs-12 col-sm-3">
<a href="#skip-menu" class="hidden">Skip menu</a>
<ul class="nav nav-pills nav-stacked">
<li class="active">
<a href="/index.html">
<span class="glyphicon glyphicon-home"></span>
Inicio
</a>
</li>
<li>
<a href="/juez/upload_form.php">
<span class="glyphicon glyphicon-send"></span>
Enviar problema
</a>
</li>
<li>
<a href="/juez/insertar_usuario.html" >
<span class="glyphicon glyphicon-user"></span>
Crear usuario
</a>
</li>
<li>
<a href="/juez/puntajes.php">
<span class="glyphicon glyphicon-stats"></span>
Tabla de posiciones
</a>
</li>
<li>
<a href="/juez/insert_problem.html">
<span class="glyphicon glyphicon-plus-sign"></span>
Agregar problema
</a>
</li>
<li class="last">
<a href="/juez/mis_envios.html">
<span class="glyphicon glyphicon-transfer"></span>
Mis envios
</a>
</li>
</ul>
</div>
<div class="col-xs-12 col-sm-7 well well-lg call-to-action">
<div class="col-sm-8">
<h3 class="media-heading text-uppercase reviews">Descarga Discant </h3>
<p class="media-comment">
<font color="#DB8321"> ¡Comienza a aprender a programar! </font>
</p>
</div>
<div class="btn-group" role="group" aria-label="...">
<a class="btn btn-default btn-circle text-uppercase" href="http://dserrano3.github.io/Discant/" target="_blank">
<span class="glyphicon glyphicon-link"></span>
Discant
</a>
<a class="btn btn-default text-uppercase" href="https://github.com/dserrano3/spanish_programming_language" target="_blank">
<!-- icon not working <i class="icon icon-blacktocat"></i> -->
Github
</a>
</div>
</div>
<div class="col-xs-12 col-sm-7 well well-lg call-to-action">
<div class="col-sm-8">
<h3 class="media-heading text-uppercase reviews">Regístrate</h3>
<p class="media-comment">
<font color="#DB8321"> Y envía tu primer problema </font>
</p>
</div>
<div>
<a class="btn btn-default btn-circle text-uppercase" href="/juez/insertar_usuario.html">
<span class="glyphicon glyphicon-user"></span>
Regístrate ahora
</a>
</div>
</div>
</div>
</main>
</header>
<div id="footer" class="navbar navbar-default navbar-fixed-bottom">
<div class="container">
<p>Juez creado por: Daniel Serrano</p>
<p>Lenguaje creado por: Alfredo Santamaria y Daniel Serrano</p>
</div>
</div>
</body>
</html>