Headless CMS and Content Managment Hub
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

28 lines
719 B

<!DOCTYPE html>
<html>
<head>
<base href="/">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>@ViewBag.Title - Squidex Headless CMS</title>
<environment names="Production">
<link rel="stylesheet" asp-append-version="true" href="~/build/app.css" />
</environment>
@if (IsSectionDefined("header"))
{
@RenderSection("header")
}
</head>
<body>
@RenderBody()
<environment names="Development">
<script type="text/javascript" src="http://localhost:3000/shims.js"></script>
<script type="text/javascript" src="http://localhost:3000/app.js"></script>
</environment>
</body>
</html>