mirror of
https://github.com/lempamo/Project-Unite.git
synced 2025-01-22 19:31:47 -05:00
Hmmmmmm...
This commit is contained in:
parent
843824bb59
commit
b619fb6d11
1 changed files with 10 additions and 9 deletions
|
@ -1,5 +1,13 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
@{
|
||||
string style = "";
|
||||
if (ViewBag.Banner != null)
|
||||
{
|
||||
style = "background-image: url(\"" + ViewBag.Banner + "\") cover;";
|
||||
}
|
||||
}
|
||||
|
||||
<html style="@style">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
@ -12,14 +20,7 @@
|
|||
@Scripts.Render("~/bundles/modernizr")
|
||||
|
||||
</head>
|
||||
@{
|
||||
string style = "";
|
||||
if(ViewBag.Banner != null)
|
||||
{
|
||||
style = "background-image: url(\"" + ViewBag.Banner + "\") cover;";
|
||||
}
|
||||
}
|
||||
<body style="@style">
|
||||
<body>
|
||||
@Scripts.Render("~/Scripts/highlight.js")
|
||||
<div class="navbar navbar-default navbar-fixed-top">
|
||||
<div> <!--Let's just add some padding there so the page doesn't look fucked.-->
|
||||
|
|
Loading…
Reference in a new issue