-
Notifications
You must be signed in to change notification settings - Fork 2
/
club.html
158 lines (139 loc) · 5.53 KB
/
club.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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!DOCTYPE html>
<html lang="zxx">
<head>
<meta charset="UTF-8">
<meta name="description" content="Specer Template">
<meta name="keywords" content="Specer, unica, creative, html">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>All Football!</title>
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900&display=swap" rel="stylesheet">
<!-- Css Styles -->
<link rel="stylesheet" href="../static/bootstrap.min.css" type="text/css">
<link rel="stylesheet" href="../static/font-awesome.min.css" type="text/css">
<link rel="stylesheet" href="../static/owl.carousel.min.css" type="text/css">
<link rel="stylesheet" href="../static/magnific-popup.css" type="text/css">
<link rel="stylesheet" href="../static/slicknav.min.css" type="text/css">
<link rel="stylesheet" href="../static/style.css" type="text/css">
<style>
@font-face {
font-family: montserrat;
src: url("static/Montserrat-Regular.ttf");
}
table {
/* font-family: montserrat; */
font-family: montserrat;
font-weight: 700;
font-size: larger;
border-collapse: collapse;
width: 80%;
}
table.center {
margin-left:auto;
margin-right:auto;
}
td, th {
font-family: montserrat;
font-weight: 700;
border: 1px solid #dddddd;
text-align: center;
padding: 8px;
}
tr:nth-child(even) {
background-color: #dddddd;
}
#leagueName{
font-family: montserrat;
font-weight: 700;
font-size: 40px;
text-indent: 35%;
margin-bottom: 50px;
}
</style>
<!-- <link rel="stylesheet" href="../static/club.css" type="text/css "> -->
</head>
<body>
<!-- Page Preloder -->
<div id="preloder">
<div class="loader"></div>
</div>
<!-- Header Section Begin -->
<header class="header-section">
<div class="header__nav">
<div class="container">
<div class="row">
<div class="col-lg-2">
<div class="logo">
<a href="../index.html"><img src="../static/logo.png" alt=""></a>
</div>
</div>
<div class="col-lg-10">
<div class="nav-menu">
<ul class="main-menu">
<li><a href="{{url_for('getPage_index')}}">Home</a></li>
<li class="active"><a href="#">Club</a>
<ul class="dropdown">
<li><a href="{{url_for('getData_club_Premier_League')}}">Premier League</a></li>
<li><a href="{{url_for('getData_club_Serie_A')}}">Serie A</a></li>
<li><a href="{{url_for('getData_club_La_Liga')}}">La Liga</a></li>
</ul>
</li>
<li><a href="{{url_for('get_upcoming_matches')}}">Upcoming Matches</a>
</li>
<li><a href="{{url_for('get_results')}}">Results</a></li>
</li>
<li><a href="{{url_for('get_awards')}}">Awards</a>
</li>
<li><a href="{{url_for('getPage_contact_us')}}">Contact Us</a></li>
</ul>
</div>
</div>
</div>
<div class="canvas-open">
<i class="fa fa-bars"></i>
</div>
</div>
</div>
</header>
<!-- Header End -->
<!-- Breadcrumb Section Begin -->
<section class="breadcrumb-section set-bg">
</section>
<!-- Breadcrumb Section End -->
<!-- Hero Section End -->
<section class="hero-section set-bg">
<div class="container">
<h2 id = "leagueName"> {{league}}</h2>
<table class="table table-bordered" id="myTable">
<thead>
<tr>
<th>Club Name</th>
<th>Manager Name</th>
<th>Stadium</th>
</tr>
</thead>
<tbody id="mydata">
{%for data in r%}
<tr>
<td>{{data["Club_name"]}}</td>
<td>{{data.Manager_name}}</td>
<td>{{data.Stadium}}</td>
</tr>
{%endfor%}
</tbody>
</table>
<!-- {% for data in r %}
{{ data.Club_name }}
{% endfor %} -->
</div>
</section>
<!-- Js Plugins -->
<script src="../static/jquery-3.3.1.min.js"></script>
<script src="../static/bootstrap.min.js"></script>
<script src="../static/jquery.magnific-popup.min.js"></script>
<script src="../static/jquery.slicknav.js"></script>
<script src="../static/owl.carousel.min.js"></script>
<script src="../static/main.js"></script>
</body>
</html>