mirror of
https://github.com/lempamo/Project-Unite.git
synced 2025-01-23 03:41: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>
|
<!DOCTYPE html>
|
||||||
<html>
|
@{
|
||||||
|
string style = "";
|
||||||
|
if (ViewBag.Banner != null)
|
||||||
|
{
|
||||||
|
style = "background-image: url(\"" + ViewBag.Banner + "\") cover;";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
<html style="@style">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
@ -12,14 +20,7 @@
|
||||||
@Scripts.Render("~/bundles/modernizr")
|
@Scripts.Render("~/bundles/modernizr")
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
@{
|
<body>
|
||||||
string style = "";
|
|
||||||
if(ViewBag.Banner != null)
|
|
||||||
{
|
|
||||||
style = "background-image: url(\"" + ViewBag.Banner + "\") cover;";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
<body style="@style">
|
|
||||||
@Scripts.Render("~/Scripts/highlight.js")
|
@Scripts.Render("~/Scripts/highlight.js")
|
||||||
<div class="navbar navbar-default navbar-fixed-top">
|
<div class="navbar navbar-default navbar-fixed-top">
|
||||||
<div> <!--Let's just add some padding there so the page doesn't look fucked.-->
|
<div> <!--Let's just add some padding there so the page doesn't look fucked.-->
|
||||||
|
|
Loading…
Reference in a new issue