-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblogs.php
More file actions
111 lines (102 loc) · 3.06 KB
/
Copy pathblogs.php
File metadata and controls
111 lines (102 loc) · 3.06 KB
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
<html class="no-js" lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OH! TO BE PRINCESS!!</title>
<link rel='shortcut icon' href='img/favicon.ico' type='image/x-icon'/ >
<?php
include 'cssincludes.php';
include 'jsincludes.php';
?>
</head>
<body>
<!-- Start Top Bar -->
<?php include 'php/titlebar.php'; ?>
<!-- Navigation -->
<?php include 'php/topnav.php'; ?>
<!-- End Navigation -->
<!-- End Top Bar -->
<div class="row columns">
<br />
<h2>PRINCESS BLOG</h2>
<br />
<p>A PRINCESS HAS THE BLOG FOR FUN. DO YOU READ IT?</p>
<br />
<div class="row columns princess-blog">
<div class="callout">
<div class="row">
<div class="medium-1 columns">
<img class="selected" src="img/noonye-dancing.gif" />
</div>
<div class="medium-11 columns">
<h5><a href="#">ASK NOONYE BLOG</a></h5>
<p>THIS IS PRINCESS BLOG FOR ASKING NOONYE.</p>
</div>
</div>
</div>
<div class="callout">
<div class="row">
<div class="medium-1 columns">
<img class="selected" src="img/noonye-dancing.gif" />
</div>
<div class="medium-11 columns">
<h5><a href="#">NICPANIC BLOG</a></h5>
<p>BLOG OF PRINCESS NIC.</p>
</div>
</div>
</div>
<div class="callout">
<div class="row">
<div class="medium-1 columns">
<img class="selected" src="img/noonye-dancing.gif" />
</div>
<div class="medium-11 columns">
<h5><a href="#">A PENGUIN BLOG</a></h5>
<p>BLOG OF PRINCESS PENGUIN.</p>
</div>
</div>
</div>
</div>
<br />
<br />
</div>
<!-- Start Audio Player -->
<div class="row column">
<div class='player-wrapper'>
<div class='foundation-player no-1'>
<ul class='player menu simple noselect'>
<li class='player-button play'>
<em class='fi-music'></em>
</li>
<li class='player-button rewind'>
<em class='fi-refresh'></em>
</li>
<li class='player-progress'>
<div class='progress round' role='progressbar'>
<div class='progress-meter played'></div>
</div>
</li>
<li class='player-status time'>
<span class='elapsed'>00:00</span>
</li>
<li class='player-button volume'>
<em class='fi-volume'></em>
</li>
<li class="volume-slider">
<div id="audioSlider"></div>
</li>
</ul>
<audio id="audio1" src="audio/03_I_Like_Jump_Rope.mp3" autoplay loop>
Your browser doesn't support this audio thingy. Get another one if you want to hear noises.
</audio>
</div>
<p><a href="https://ozzed.bandcamp.com/album/8-bit-empire">'I LIKE JUMP ROPE'</a> BY <a href="http://ozzed.net/">OZZED</a> IS PLAYING SONG! <a href="credits.php#princess_blog_license">SEE LICENSE</a>.</p>
</div>
</div>
<!-- End Audio Player -->
<!-- Start Footer -->
<?php include 'php/footer.php'; ?>
<!-- End Footer -->
</body>
</html>