40 lines
1.0 KiB
PHP
40 lines
1.0 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Slim Whoops Examples</title>
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
|
|
</head>
|
|
<style type="text/css">
|
|
.part {
|
|
margin-top: 20px;
|
|
margin-bottom: 30px;
|
|
}
|
|
</style>
|
|
<body>
|
|
<div class="container">
|
|
<h3>Examples</h3>
|
|
<hr>
|
|
<div class="part">
|
|
<h5>Usage</h5>
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th width="30%">File / Path</th>
|
|
<th>Description</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>
|
|
<a href="/url-path-not-exists">/url-path-not-exists</a>
|
|
</td>
|
|
<td>Basic middleware usage</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|