mirror of
https://github.com/rembo10/headphones.git
synced 2026-03-21 20:29:27 +00:00
32 lines
1.0 KiB
Python
32 lines
1.0 KiB
Python
_header = '''
|
|
<html>
|
|
<head>
|
|
<title>Headphones</title>
|
|
<link rel="stylesheet" type="text/css" href="data/css/style.css" />
|
|
<link rel="icon" type="image/png" href="data/images/headphoneslogo.png" />
|
|
<link rel="apple-touch-icon" href="data/images/headphoneslogo.png" />
|
|
</head>
|
|
<body>
|
|
<div class="container">'''
|
|
|
|
_logobar = '''
|
|
<div class="logo"><a href="/"><img src="data/images/headphoneslogo.png" border="0">headphones<a></div>
|
|
<div class="search"><form action="findArtist" method="GET">
|
|
<input type="text" value="Add an artist" onfocus="if
|
|
(this.value==this.defaultValue) this.value='';" name="name" />
|
|
<input type="submit" /></form></div><br />
|
|
'''
|
|
|
|
_nav = '''<div class="nav">
|
|
<a href="/">HOME</a>
|
|
<a href="/upcoming">UPCOMING</a>
|
|
<a href="/manage">MANAGE</a>
|
|
<a href="/history">HISTORY</a>
|
|
<a href="/config">SETTINGS</a>
|
|
<a href="/shutdown"><font color="red">SHUTDOWN</font></a>
|
|
</div>'''
|
|
|
|
_footer = '''
|
|
</div><div class="footer"></div>
|
|
</body>
|
|
</html>''' |