-
Notifications
You must be signed in to change notification settings - Fork 2
/
short_stories.php
76 lines (70 loc) · 2.74 KB
/
short_stories.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
<?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(' | Short stories'); ?>
<body class="is-preload">
<!-- Header -->
<?php echo getNavBar(); ?>
<!-- Highlights -->
<section class="wrapper">
<div class="inner">
<header class="special">
<h2>Select a Story</h2>
</header>
<div class="highlights">
<!--Selectable categories-->
<section>
<a href="./short-stories/marine-drive.php">
<div class="content" style="cursor: pointer;">
<header>
<img src="/images/audiobook-icon-66.png" alt="" class="audiobook-icon" />
<h3>Marine drive</h3>
</header>
</div>
</a>
</section>
<section>
<a href="./short-stories/රත්තරන්-ආසාව.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="./short-stories/ජන-කතා.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="./short-stories/අන්තිම-උපාය.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>