-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (64 loc) · 2.63 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>NBA PlayOffs</title>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Estilos propios -->
<link href="css/estilos.css" rel="stylesheet">
</head>
<body>
<header class="container hidden-xs">
<div class="row">
<img id="logo" src="images/logo.jpg"></img>
</div>
</header>
<nav id="navigationBar" class="container navbar navbar-default">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navigation" aria-expanded="false">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="navigation">
<ul class="nav navbar-nav">
<li class="navItem" name="home"><a href="#">Home</a></li>
<li class="navItem" name="fixture"><a href="#">Fixture</a></li>
<li class="navItem" name="equipos"><a href="#">Equipos</a></li>
<li class="navItem" name="contacto"><a href="#">Contacto</a></li>
<li id="admin"><a href="#">Admin Jugadores</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</nav>
<!-- Seccion principal donde se injecta contenido -->
<section id="mainContent" class="container">
</section>
<footer class="container">
<div class="row">
<div class="col-sm-4 text-center">
<a href="https://www.facebook.com/nba" target="_blank"><img class="social" src="images/facebooklogo.png"></img></a>
</div>
<div class="col-sm-4 text-center">
<a href="https://www.instagram.com/nba/" target="_blank"><img class="social" src="images/instagramlogo.png"></img></a>
</div>
<div class="col-sm-4 text-center">
<a href="https://twitter.com/nba" target="_blank"><img class="social" src="images/twitterlogo.png"></img></a>
</div>
</div>
</footer>
<!-- jQuery -->
<script src="js/jquery.min.js"></script>
<!-- bootstrap -->
<script src="js/bootstrap.min.js"></script>
<!-- JS propio -->
<script src="js/partialRender.js"></script>
<script src="js/players.js"></script>
<script src="js/postDeletePlayer.js"></script>
<script src="js/firstLoad.js"></script>
</body>
</html>