Advertisement
Guest User

Untitled

a guest
Feb 21st, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.21 KB | None | 0 0
  1. {% load cms_tags menu_tags sekizai_tags %}
  2. <!doctype html>
  3. <html>
  4.     <head>
  5.         <title>{% block title %}This is my new project home page{% endblock title %}</title>
  6.         <meta name="viewport" content="width=device-width,initial-scale=1">
  7.        
  8.         <style type="text/css">
  9.             .nav {
  10.                 padding-left: 0;
  11.             }
  12.             .nav li {
  13.                 display: inline;
  14.                 list-style-type: none;
  15.                 padding-right: 20px;
  16.             }
  17.             .container {
  18.                 width: 940px;
  19.                 margin: 0 auto
  20.             }
  21.             .content {
  22.                 float: left;
  23.                 width: 80%;
  24.             }
  25.             .sidebar {
  26.                 float: left;
  27.                 width: 20%;
  28.             }
  29.         </style>
  30.         {% block header_block %}{% endblock header_block %}
  31.         {% render_block "css" %}
  32.     </head>
  33.     <body>
  34.         {% cms_toolbar %}
  35.         <div class="container">
  36.             <ul class="nav">
  37.                 {% show_menu 0 100 100 100 %}
  38.             </ul>
  39.             {% block content %}{% endblock content %}
  40.         </div>
  41.         {% render_block "js" %}
  42.     </body>
  43. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement