10
|
1 <!DOCTYPE html>
|
|
2 <html>
|
|
3 <head>
|
|
4 <title>Gestión de VANs</title>
|
|
5 <link href="@Url.Content("~/Content/Site.css")" rel="stylesheet" type="text/css" />
|
|
6 <script src="@Url.Content("~/Scripts/jquery-1.4.4.min.js")" type="text/javascript"></script>
|
|
7 </head>
|
|
8
|
|
9 <body>
|
|
10 <div class="page">
|
|
11 <div id="header">
|
|
12 <div id="title">
|
|
13 <h1>Gestión de VANs</h1>
|
|
14 </div>
|
|
15
|
|
16 <div id="logindisplay">
|
|
17 @Html.Partial("_LogOnPartial")
|
|
18 </div>
|
|
19
|
|
20 <div id="menucontainer">
|
|
21
|
|
22 <ul id="menu">
|
|
23 <li>@Html.ActionLink("Home", "Index", "Home")</li>
|
|
24 <li>@Html.ActionLink("Agenda", "Index", "Agenda")</li>
|
|
25 <li>@Html.ActionLink("Histórico", "Index", "Histórico")</li>
|
|
26 <li>@Html.ActionLink("About", "About", "Home")</li>
|
|
27 </ul>
|
|
28
|
|
29 </div>
|
|
30 </div>
|
|
31
|
|
32 <div id="main">
|
|
33 <h2>@ViewBag.Title</h2>
|
|
34 @RenderBody()
|
|
35 <div id="footer">
|
|
36 </div>
|
|
37 </div>
|
|
38 </div>
|
|
39 </body>
|
|
40 </html>
|