forked from victorstanciu/dbv
-
Notifications
You must be signed in to change notification settings - Fork 1
/
header.php
29 lines (25 loc) · 1.06 KB
/
header.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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>dbv - Database versioning, made easy</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta http-equiv="content-language" content="en" />
<meta name="robots" content="noindex,nofollow" />
<meta name="author" content="Victor Stanciu - http://victorstanciu.ro" />
<link rel="stylesheet" type="text/css" media="screen" href="public/stylesheets/dbv.css" />
<link rel="stylesheet" type="text/css" media="screen" href="public/stylesheets/codemirror.css" />
</head>
<body>
<div class="navbar navbar-static-top navbar-inverse">
<div class="navbar-inner">
<div class="container">
<a href="index.php" class="brand">dbv</a>
<ul class="nav pull-right">
<li><a href="ManageDB.php">Add new Database</a></li>
<li><a href="http://dbv.vizuina.com/documentation/#usage" target="_blank">Help</a></li>
<li><a href="readme.php">Readme</a></li>
</ul>
</div>
</div>
</div>
<div class="clear"></div>