Files
2020-02-18 15:34:52 +01:00

45 lines
1.6 KiB
Plaintext

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Steamware ZCode Generator</title>
@Styles.Render("~/Content/css")
@Scripts.Render("~/bundles/modernizr")
</head>
<body>
<div class="navbar navbar-expand-sm navbar-dark bg-dark fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggler" data-toggle="collapse" data-target="#navbarContent">
<span class="navbar-toggler-icon"></span>
</button>
@Html.ActionLink("ZCode Gen", "Index", "Home", new { area = "" }, new { @class = "navbar-brand" })
<i class="fa fa-qrcode text-light" aria-hidden="true"></i>
<i class="fa fa-barcode text-light" aria-hidden="true"></i>
</div>
@*<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li>@Html.ActionLink("www.steamware.net", "steamware", "Home")</li>
</ul>
</div>*@
</div>
</div>
<div class="container body-content">
@RenderBody()
<hr />
<footer>
<div class="row">
<div class="col text-left">v @typeof(QR_GEN.MvcApplication).Assembly.GetName().Version &copy; @ViewBag.CopyRight @DateTime.Now.Year</div>
<div class="col text-right">Powered by <a href="https://www.steamware.net" target="_blank">www.steamware.net</a></div>
</div>
</footer>
</div>
@Scripts.Render("~/bundles/jquery")
@Scripts.Render("~/bundles/bootstrap")
@RenderSection("scripts", required: false)
</body>
</html>