mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-22 17:47:53 +00:00
18 lines
655 B
Plaintext
18 lines
655 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>@ViewData["Title"] - WebApplicationBasic</title>
|
|
<base href="/" />
|
|
<link rel="stylesheet" href="~/dist/vendor.css" asp-append-version="true" />
|
|
<link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.7/css/materialize.min.css">
|
|
</head>
|
|
<body>
|
|
@RenderBody()
|
|
|
|
@RenderSection("scripts", required: false)
|
|
</body>
|
|
</html>
|