1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
| <%@ Master Language="C#" Inherits="System.Web.Mvc.ViewMasterPage" %>
<!DOCTYPE html>
<html>
<head id="Head1" runat="server">
<meta name="viewport" content="width=device-width" />
<title><asp:ContentPlaceHolder ID="TitleContent" runat="server" /></title>
<link href='http://fonts.googleapis.com/css?family=Amaranth' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="../../../Scripts/jquery-ui-1.8.16.custom/development-bundle/themes/base/jquery.ui.all.css">
<script src="../../../Scripts/jquery-ui-1.8.16.custom/js/jquery-1.6.2.min.js"></script>
<script src="../../../Scripts/jquery-ui-1.8.16.custom/development-bundle/ui/jquery.ui.core.js"></script>
<script src="../../../Scripts/jquery-ui-1.8.16.custom/development-bundle/ui/jquery.ui.widget.js"></script>
<script src="../../../Scripts/jquery-ui-1.8.16.custom/development-bundle/ui/jquery.ui.tabs.js"></script>
<link href="Content/master_page.css" rel="stylesheet" type="text/css" />
<script type="text/javascript">
$(function () {
$("#tabs").tabs();
});
</script>
</head>
<body>
<header id="menu_top">
<div id="title"><h1>myPortfolio</h1></div>
<div id="logout"><span>Maxime AUBRY | <a href="#">Déconnexion</a></span></div>
</header>
<section id="tabs">
<ul id="menu">
<li><a href="/admin/Dashboard"><h2>Tableau de bord</h2></a></li>
<li><a href="/admin/Blog"><h2>Blog</h2><span>Ajouter un article</span></a></li>
</ul>
</section>
</body>
</html> |
Partager