Add some basic layout
This commit is contained in:
parent
49609a06c1
commit
e0a203e751
4 changed files with 58 additions and 53 deletions
|
@ -6,13 +6,22 @@
|
|||
<title>@ViewData["Title"] - Website</title>
|
||||
|
||||
<environment include="Development">
|
||||
<link rel="stylesheet" href="~/css/site.css" />
|
||||
</environment>
|
||||
<environment exclude="Development">
|
||||
<link rel="stylesheet" href="~/css/site.min.css" />
|
||||
</environment>
|
||||
<link rel="stylesheet" href="~/css/site.css" />
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<a id="logo" href="/"><img src="~/images/logo.png" alt="logo" /> Robware</a>
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="//git.robware.uk">Projects</a></li>
|
||||
<li><a href="/blog">Blog</a></li>
|
||||
<li><a href="/gallery">Gallery</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
<main>
|
||||
@RenderBody()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue