Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @{
- ViewBag.Title = "Пици";
- }
- <!DOCTYPE html>
- <html>
- <head>
- <title>@ViewBag.Title</title>
- <meta charset="utf-8" />
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
- <link href="../../Content/style.css" rel="stylesheet" type="text/css" />
- <link rel="shortcut icon" href="images/Pizzasliceicon.png" type="image/x-icon" />
- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
- @Scripts.Render("~/bundles/modernizr")
- <script type="text/javascript">
- $(function () {
- var menuEffect = function () {
- $('.nav li').find('>ul').hide();
- }
- menuEffect.prototype = {
- effect: function () {
- $('.nav li').hover(function () {
- $(this).find('>ul').slideDown(600);
- }, function () {
- $(this).find('>ul').hide();
- }
- )
- }
- }
- obj = new menuEffect();
- obj.effect();
- });
- </script>
- </head>
- <body>
- <div id="wrapper">
- <section id="logo">
- <article>
- <div >
- </div>
- </article>
- </section>
- <header id="pizza_header">
- <ul class="header_Contacts">
- @foreach (var phone in Model.PhoneOrders)
- {
- <li>
- <img src="@phone.LogoImage" alt="globul logo" width="18" height="15" />
- <p class="globul_phone">@phone.OperatorName: @phone.PhoneNumber</p>
- </li>
- }
- </ul>
- </header>
- @RenderSection("Menu", false)
- <section>
- <article>
- <div id="catalog_title">
- <div id="pizza_title_bg">Пици</div>
- </div>
- </article>
- </section>
- <section id="pizzas_body">
- @RenderBody()
- </section>
- @RenderSection("Footer", false)
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment