32 lines
1.0 KiB
Plaintext
32 lines
1.0 KiB
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>@ViewData["Title"] - DotNetMashup.Web</title>
|
|
|
|
<link rel="stylesheet" href="https://ajax.aspnetcdn.com/ajax/bootstrap/3.0.0/css/bootstrap.min.css" />
|
|
<link rel="stylesheet" href="~/css/site.css" asp-append-version="true" />
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
|
|
</head>
|
|
<body>
|
|
<div class="container body-content">
|
|
@RenderBody()
|
|
</div>
|
|
<footer>
|
|
<p>© 2015 - DotNetMashup.Web</p>
|
|
</footer>
|
|
|
|
<script src="https://ajax.aspnetcdn.com/ajax/jquery/jquery-2.1.4.min.js">
|
|
</script>
|
|
<script src="https://ajax.aspnetcdn.com/ajax/bootstrap/3.0.0/bootstrap.min.js">
|
|
</script>
|
|
<script src="https://ajax.aspnetcdn.com/ajax/hammer.js/2.0.4/hammer.min.js">
|
|
</script>
|
|
|
|
<script src="~/js/site.js" asp-append-version="true"></script>
|
|
|
|
|
|
@RenderSection("scripts", required: false)
|
|
</body>
|
|
</html> |