genofire/hs_monolith
genofire
/
hs_monolith
Archived
1
0
Fork 0
This repository has been archived on 2020-09-27. You can view files and clone it, but cannot push or open issues or pull requests.
hs_monolith/webroot/index.html

71 lines
2.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="/static/css/bootstrap.min.css" rel="stylesheet" />
<link href="/static/css/mosh.css" rel="stylesheet" />
</head>
<body>
<div class="navbar-wrapper">
<nav class="navbar navbar-inverse navbar-static-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed"
data-toggle="collapse" data-target="#navbar"
aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle
navigation</span> <span class="icon-bar"></span> <span
class="icon-bar"></span> <span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">Store Admin</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="/">List</a></li>
<li><a href="/statistics.html">Statistics</a></li>
</ul>
</div>
</div>
</nav>
</div>
<div class="container">
<table class="table table-striped table-condensed table-hover list">
<thead>
<tr>
<th>#</th>
<th>Productname</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Apfel</td>
<td>
<img src="/api/good/availablity/1"/>
</td>
</tr>
<tr>
<td>2</td>
<td>Birne</td>
<td>
<img src="/api/good/availablity/2"/>
</td>
</tr>
</tbody>
</table>
<hr />
<footer>
<p>&copy; 2017 MM / Go - Team</p>
</footer>
</div>
<script src="/static/js/jquery-3.1.1.min.js"></script>
<script src="/static/js/bootstrap.min.js"></script>
</body>
</html>