forked from kmdv/quizzard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
45 lines (43 loc) · 1.82 KB
/
index.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
<!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="pl">
<head>
<title>Quizzard</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Language" content="pl" />
<meta http-equiv="Cache-Control" content="no-cache" />
<meta name="Description" content="Quizzard" />
<meta name="Keywords" content="quiz, quizzard, quizy, tworzenie, serwisy, internetowe" />
<meta name="Author" content="Karol Medwecki, Artur Koziarz, Artur Kaflowski" />
<meta name="Title" content="Quizzard" />
<link rel="Stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div class="page-wrapper">
<div class="banner-wrapper with-horizontal-separator">
<img src="banner.png" />
</div>
<div class="menu-wrapper with-horizontal-separator">
<!--<div class="menu-item-wrapper with-vertical-separator">
<a href="index.php?show=quiz_list">Quiz list</a>
</div><div class="menu-item-wrapper with-vertical-separator">
<a href="index.php?show=quiz_list">Quiz list 2</a>
</div>-->
<div class="menu-item-wrapper">
<a href="index.php?show=quiz_list">Lista quizów</a>
</div><div class="menu-item-wrapper">
<a href="index.php?show=quiz_wizard">Dodaj nowy quiz</a>
</div><div class="menu-item-wrapper">
<a href="index.php?show=about">O projekcie</a>
</div>
</div>
<div class="content-wrapper with-horizontal-separator">
<?php include('content.php'); ?>
</div>
<div class="footer-wrapper with-horizontal-separator">
Copyright (c) 2013-2014 by Quizzard Team
</div>
</div>
</body>
</html>