-
Notifications
You must be signed in to change notification settings - Fork 2
/
past_papers.php
58 lines (50 loc) · 1.81 KB
/
past_papers.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
<?php
include_once('components/header.php');
include_once('components/navbar.php');
?>
<!DOCTYPE HTML>
<!--
Industrious by TEMPLATED
templated.co @templatedco
Released for free under the Creative Commons Attribution 3.0 license (templated.co/license)
-->
<html lang="en">
<?php echo getHeader(' | Past Papers | Sinhala Medium'); ?>
<body class="is-preload">
<!-- Header -->
<?php echo getNavBar(); ?>
<!-- Highlights -->
<section class="wrapper">
<div class="inner">
<header class="special">
<h2>Select a Subject</h2>
</header>
<div class="highlights" style="justify-content: center;">
<!--Selectable categories-->
<section>
<a href="./past-papers/past_papers_ol.php">
<div class="content" style="cursor: pointer;">
<header>
<img src="/images/audiobook-icon-66.png" alt="" class="audiobook-icon" />
<h3>G.C.E. Ordinary Level - Past papers</h3>
</header>
</div>
</a>
</section>
<section>
<a href="./past-papers/past_papers_al.php">
<div class="content" style="cursor: pointer;">
<header>
<img src="/images/audiobook-icon-66.png" alt="" class="audiobook-icon" />
<h3>G.C.E. Advanced Level - Past papers</h3>
</header>
</div>
</a>
</section>
</div>
</div>
</section>
<!-- Footer -->
<?php include_once('components/footer.php'); ?>
</body>
</html>