Umbraco update
Error email updates Piscal communication error handling Empty page for terms of service
This commit is contained in:
@@ -0,0 +1,50 @@
|
||||
@using ClientDependency.Core.Mvc
|
||||
@inherits UmbracoTemplatePage
|
||||
@{
|
||||
Layout = null;
|
||||
Html.RequiresCss("~/Content/bootstrap_leafweb.css");
|
||||
Html.RequiresCss("~/Content/site.css");
|
||||
Html.RequiresCss("~/Content/style.css");
|
||||
Html.RequiresCss("~/css/rte.css");
|
||||
Html.RequiresJs("~/scripts/jquery-1.12.4.js", 0);
|
||||
Html.RequiresJs("~/scripts/bootstrap.js", 0);
|
||||
Html.RequiresJs("~/scripts/site.js");
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
|
||||
<!-- Meta tags -->
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="@CurrentPage.siteDescription">
|
||||
|
||||
<title>@CurrentPage.Name | @CurrentPage._siteTitle</title>
|
||||
|
||||
<!-- Fonts -->
|
||||
<link href="//fonts.googleapis.com/css?family=Merriweather:400,700,300,900" rel="stylesheet" type="text/css">
|
||||
<link href="//fonts.googleapis.com/css?family=Lato:300,400,700,900" rel="stylesheet" type="text/css">
|
||||
|
||||
<!-- CSS -->
|
||||
@Html.RenderCssHere()
|
||||
|
||||
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="//oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
||||
<script src="//oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div role="content">
|
||||
@CurrentPage.GetGridHtml("content", "fanoe")
|
||||
</div>
|
||||
|
||||
<!-- Javascripts -->
|
||||
@Html.RenderJsHere()
|
||||
</body>
|
||||
</html>
|
||||
@@ -61,6 +61,7 @@
|
||||
@Html.EditorFor(m => m.Name)
|
||||
@Html.EditorFor(m => m.Email)
|
||||
@Html.EditorFor(m => m.EmailConfirm)
|
||||
<a href="@UmbracoContext.Current.UrlProvider.GetUrl(1115)" target="_blank">Terms of Service</a>
|
||||
<input type="submit" id="submit-form" class="hidden"/>
|
||||
}
|
||||
<label for="submit-form" class="btn btn-primary pull-right">Submit...</label>
|
||||
|
||||
Reference in New Issue
Block a user