-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
98 lines (64 loc) · 2 KB
/
index.php
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
<!doctype html>
<html lang="pt-br">
<head>
<?php
$page_name = 'Listão Vestibular UFPA';
$page_description = 'A Rádio Web UFPA disponibiliza os áudios do listão de aprovados no vestibular da UFPA.';
$page_tags = 'audio vestibular ufpa, listao vestibular ufpa';
include '_includes/listao_vestibular_ufpa.php';
include '../_includes/head.php';
?>
</head>
<body>
<?php
include '../_includes/header.php';
include '../_includes/share.php';
?>
<section class="full-screen img-vestibular">
<div class="full-screen-container background-2">
<h1>Listão dos Aprovados Vestibular <strong>UFPA</strong></h1>
<a href="#content" id="scroll-button" class="color-1"></a>
</div>
</section>
<section id="content" class="full-screen">
<div class="full-screen-container">
<h2 class="text-1">Escolha o Ano:</h2>
<div class="tile">
<div class="quad-tile">
<figure class="img-aprovados-2"></figure>
<a href="#content" target="_blank">
<h4>2017 (em breve)</h4>
</a>
</div>
<div class="quad-tile">
<figure class="img-aprovados-1"></figure>
<a href="2016">
<h4>2016</h4>
</a>
</div>
<div class="quad-tile">
<figure class="img-aprovados-3"></figure>
<a href="2015">
<h4>2015</h4>
</a>
</div>
<!-- <div class="tile quad-tile">
<figure class="img-aprovados-2"></figure>
<a href="2014">
<h4>2014</h4>
</a>
</div> -->
</div>
</div>
</section>
</body>
<?php include '../_includes/footer.php'; ?>
<!-- Scripts -->
<script src="http://radio.ufpa.br/_scripts/functions.js" type="text/javascript"></script>
<script src="http://radio.ufpa.br/_scripts/menu.js" type="text/javascript"></script>
<script src="http://radio.ufpa.br/_scripts/header.js" type="text/javascript"></script>
<script src="http://radio.ufpa.br/_scripts/scroll.js" type="text/javascript"></script>
<!-- Google Analytics -->
<?php include_once("analyticstracking.php") ?>
</body>
</html>