Mercurial > altnet-hispano
annotate Agendas/trunk/src/Agendas.Web/Views/Shared/_Layout.cshtml @ 26:71b02443450a
UI de Propuestas de VANs
author | nelo@MTEySS.neluz.int |
---|---|
date | Tue, 15 Mar 2011 08:45:00 -0300 |
parents | e8d2be47a6b0 |
children | 08dbe42fdde1 |
rev | line source |
---|---|
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> | |
26 | 24 <li>@Html.ActionLink("Propuestas", "Index", "Propuesta")</li> |
25
e8d2be47a6b0
Cambios de nombre en Portal.Web (Agenda x Evento)
nelo@MTEySS.neluz.int
parents:
10
diff
changeset
|
25 <li>@Html.ActionLink("Eventos", "Index", "Evento")</li> |
10 | 26 <li>@Html.ActionLink("Histórico", "Index", "Histórico")</li> |
27 <li>@Html.ActionLink("About", "About", "Home")</li> | |
28 </ul> | |
29 | |
30 </div> | |
31 </div> | |
32 | |
33 <div id="main"> | |
34 <h2>@ViewBag.Title</h2> | |
35 @RenderBody() | |
36 <div id="footer"> | |
37 </div> | |
38 </div> | |
39 </div> | |
40 </body> | |
41 </html> |