mirror of
https://github.com/lempamo/Project-Unite.git
synced 2025-01-22 17:22:15 +00:00
grrrrrrrrrrr
This commit is contained in:
parent
eb8a56e37e
commit
7c3d5156e1
1 changed files with 22 additions and 4 deletions
|
@ -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 • 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")
|
||||
|
|
Loading…
Reference in a new issue