grrrrrrrrrrr

This commit is contained in:
Michael 2017-05-24 14:12:04 -04:00
parent eb8a56e37e
commit 7c3d5156e1

View file

@ -27,14 +27,32 @@
<script src="@Url.Action("jquery.datetimepicker.js", "Scripts")"></script>
<link rel="stylesheet" href="~/Content/datetimepicker.css" />
@RenderSection("scripts", required: false)
@if (!string.IsNullOrWhiteSpace(ViewBag.Title))
{
<title>@ViewBag.Title &bull; ShiftOS</title>
<meta property="og:title" content="@ViewBag.Title - ShiftOS" />
}
else
{
<title>ShiftOS</title>
<meta property="og:title" contest="ShiftOS" />
}
<meta name="description" content="@ViewBag.Description" />
@if (!string.IsNullOrWhiteSpace(ViewBag.Keywords))
{
<meta name="keywords" content="@Model.Keywords" />
<meta property="og:title" content="@ViewBag.Title" />
}
@if (!string.IsNullOrWhiteSpace(ViewBag.Description))
{
<meta name="description" content="@ViewBag.Description" />
<meta property="og:description" content="@ViewBag.Description" />
}
@if (!string.IsNullOrWhiteSpace(ViewBag.Image))
{
<meta property="og:image" content="@ViewBag.Image" />
}
@Styles.Render("~/Content/css")
@Styles.Render("~/Content/bootstrap-theme.css")