-
Notifications
You must be signed in to change notification settings - Fork 2
/
magazines.php
106 lines (100 loc) · 4.23 KB
/
magazines.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
99
100
101
102
103
104
105
106
<?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(' | Magazines'); ?>
<body class="is-preload">
<!-- Header -->
<?php echo getNavBar(); ?>
<!-- Highlights -->
<section class="wrapper">
<div class="inner">
<header class="special">
<h2>Select a Genre</h2>
</header>
<div class="highlights">
<!--Selectable categories-->
<section>
<a href="./magazines/magazines_අභ්යවකාශය.php">
<div class="content" style="cursor: pointer;">
<header>
<img src="/images/audiobook-icon-66.png" alt="" class="audiobook-icon" />
<h3>අභ්යවකාශය</h3>
</header>
</div>
</a>
</section>
<section>
<a href="./magazines/magazines_ඉතිහාසය.php">
<div class="content" style="cursor: pointer;">
<header>
<img src="/images/audiobook-icon-66.png" alt="" class="audiobook-icon" />
<h3>ඉතිහාසය</h3>
</header>
</div>
</a>
</section>
<section>
<a href="./magazines/magazines_කලාව_හා_ආගම.php">
<div class="content" style="cursor: pointer;">
<header>
<img src="/images/audiobook-icon-66.png" alt="" class="audiobook-icon" />
<h3>කලාව හා ආගම</h3>
</header>
</div>
</a>
</section>
<section>
<a href="./magazines/magazines_ජන_කතා.php">
<div class="content" style="cursor: pointer;">
<header>
<img src="/images/audiobook-icon-66.png" alt="" class="audiobook-icon" />
<h3>ජන කතා</h3>
</header>
</div>
</a>
</section>
<section>
<a href="./magazines/magazines_විද්යාව.php">
<div class="content" style="cursor: pointer;">
<header>
<img src="/images/audiobook-icon-66.png" alt="" class="audiobook-icon" />
<h3>විද්යාව</h3>
</header>
</div>
</a>
</section>
<section>
<a href="./magazines/magazines_විවිධ.php">
<div class="content" style="cursor: pointer;">
<header>
<img src="/images/audiobook-icon-66.png" alt="" class="audiobook-icon" />
<h3>විවිධ</h3>
</header>
</div>
</a>
</section>
<section>
<a href="./magazines/magazines_literature.php">
<div class="content" style="cursor: pointer;">
<header>
<img src="/images/audiobook-icon-66.png" alt="" class="audiobook-icon" />
<h3>සාහිත්යය</h3>
</header>
</div>
</a>
</section>
</div>
</div>
</section>
<!-- Footer -->
<?php include_once('components/footer.php'); ?>
</body>
</html>