aspnetcore/sample/ApplicationInsightsHostingS.../Views/Shared/_Layout.cshtml

19 lines
639 B
Plaintext

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>@ViewData["Title"] - ApplicationInsightsJavaScriptSnippetSample</title>
<script>document.write('Head tag script. Look for Application Insights JavaScriptSnippet below this script in the HTML file.')</script>
</head>
<body>
<div class="container body-content">
@RenderBody()
<hr />
<footer>
<p>&copy; 2017 - ApplicationInsightsJavaScriptSnippetSample</p>
</footer>
</div>
@RenderSection("Scripts", required: false)
</body>
</html>