mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 08:15:53 +01:00
49 lines
1.8 KiB
HTML
49 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title></title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<link rel="stylesheet" href="css/bootstrap.min.css" type="text/css"/>
|
|
<link rel="stylesheet" href="css/bootstrap-responsive.min.css" type="text/css"/>
|
|
<script src="js/libs/jquery-1.8.3/jquery.min.js"></script>
|
|
<script src="js/bootstrap.min.js"></script>
|
|
<script src="js/app.js"></script>
|
|
<style>
|
|
body {
|
|
padding-top: 60px; /* 60px to make the container go all the way to the bottom of the topbar */
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="navbar navbar-inverse navbar-fixed-top">
|
|
<div class="navbar-inner">
|
|
<div class="container">
|
|
<button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
|
|
<span class="icon-bar"></span>
|
|
<span class="icon-bar"></span>
|
|
<span class="icon-bar"></span>
|
|
</button>
|
|
<a class="brand" href="#">Delphi MVC Framework</a>
|
|
<div class="nav-collapse collapse">
|
|
<ul class="nav">
|
|
<li class="active"><a href="#">Home</a></li>
|
|
<li><a id="btn1">Hello World</a></li>
|
|
<li><a id="btn2">Seding a POST Request</a></li>
|
|
<li><a id="btn3">Using segment parameters</a></li>
|
|
<li><a id="btn5">Handle Exceptions</a></li>
|
|
</ul>
|
|
</div><!--/.nav-collapse -->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="container">
|
|
|
|
<h1>Starter template</h1>
|
|
<p>Use this document as a way to quick start any new project.<br> All you get is this message and a barebones HTML document.</p>
|
|
<p>Check the browser Developer Console (F12 in Chrome and Firefox).</p>
|
|
<samp id="content"></samp>
|
|
</div> <!-- /container -->
|
|
</body>
|
|
</html>
|