@{ string style = ""; if (ViewBag.Banner != null) { style = "background: url(\"" + ViewBag.Banner + "\") center center fixed;background-size:cover;"; } } @if(ViewBag.PageDescription != null) { } @ViewBag.Title • Project: Unite @Styles.Render("~/Content/css") @Styles.Render("~/Content/bootstrap-theme.css") @Styles.Render("~/Content/Site.css") @Scripts.Render("~/bundles/modernizr") @Scripts.Render("~/Scripts/highlight.js") @if (ViewBag.Modals != null) { foreach (var id in ViewBag.Modals) { } }

Welcome to Project: Unite! Things are a bit barren right now and not a lot of stuff is implemented - but feel free to explore!

@if (!ACL.UserEmailConfirmed(User.Identity.Name)) {
Email address not confirmed! Hi! It appears that your email has not been confirmed. Please check your email. @Html.ActionLink("Resend confirmation link", "ResendConf", "Account")
} @if (ViewBag.Moderator == true) { @RenderBody(); } else if (ViewBag.Developer == true) { @RenderBody(); } else if (ACL.Granted(User.Identity.Name, ViewBag.ACLRule)) { if (ViewBag.Admin == true) { if (ACL.Granted(User.Identity.Name, "CanAccessAdminCP")) { @RenderBody(); } else {

Access denied.

You do not have permission to access this page. Contact an admin if this is in error.

} } else { @RenderBody() } } else {

Access denied.

You do not have permission to access this page. Contact an admin if this is in error.

}
@Scripts.Render("~/bundles/jquery") @Scripts.Render("~/bundles/bootstrap") @RenderSection("scripts", required: false)