Guest User

Untitled

a guest
May 21st, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.42 KB | None | 0 0
  1. body,
  2. html {
  3. margin:0;
  4. padding:4px;
  5. color:#000;
  6. background:#a7a09a;
  7. }
  8. div {
  9. border: 1px solid #000000;
  10. }
  11. div.container = { height: auto;}
  12. #wrap {
  13. width:750px;
  14. margin:0 auto;
  15. background:#99c;
  16. }
  17. #header {
  18. padding:5px 10px;
  19. background:#ddd;
  20. border: 1px solid #000000;
  21. }
  22. h1 {
  23. margin:0;
  24. }
  25. #nav {
  26. padding:5px 10px;
  27. background:#c99;
  28. }
  29. #nav ul {
  30. margin:0;
  31. padding:0;
  32. list-style:none;
  33. }
  34. #nav li {
  35. display:inline;
  36. margin:0;
  37. padding:0;
  38. }
  39. #main {
  40. float:left;
  41. width:480px;
  42. padding:10px;
  43. background:#9c9;
  44. height: auto;
  45. }
  46. h2 {
  47. margin:0 0 1em;
  48. }
  49. #sidebar {
  50. float:right;
  51. width:230px;
  52. height:100%;
  53. padding:7px;
  54. background:#99c;
  55. }
  56. #footer {
  57. clear:both;
  58. padding:5px 10px;
  59. background:#cc9;
  60. }
  61. #footer p {
  62. margin:0;
  63. }
  64. * html #footer {
  65. height:1px;
  66. }
  67.  
  68.  
  69.  
  70. <html>
  71. <head>
  72. <title> {% block title %} Qeng homepage {% endblock %} </title>
  73. <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}index.css", media="screen, print, projection"/>
  74. </head>
  75.  
  76. <body>
  77. <div id="wrap">
  78. <div id="header">{% block header %}<h1>Qeng mainpage</h1>{% endblock %}</div>
  79. <div id="nav">
  80. {% block navi %}
  81. <ul>
  82.  
  83. <li><a href="/engines">Home</a></li>
  84. <li><a href="/">Engine list</a></li>
  85. <li><a href="/engines/submit">Submit</a></li>
  86. <li><a href="/engines/manage">Manage</a></li>
  87. <li><a href="/">Contact</a></li>
  88.  
  89. </ul>
  90. {% endblock %}
  91. </div>
  92. <div class="container">
  93. <div id="main">
  94. {% block main %}
  95. <h2>Homepage</h2>
  96.  
  97. Welcome to Qeng mainpage. This is still in development and we're using Django.
  98.  
  99. Qeng is all about posting your engine and let it be rated by other people. We're still looking
  100. for more partipants to help us deal with this. Interested? Look at the contact page.
  101.  
  102. Note that this page is still under development and that we all suck at designing something.
  103. If you want to design something for us, just look at the contact page.
  104. {% endblock %}
  105. </div>
  106. <div id="sidebar">
  107. {% block sidebar %}
  108. <h2>Engines list</h2>
  109. <p>This is the current list of all engines.</p>
  110. <ul>
  111. {% if engines_list %}
  112. {% for poll in engines_list %}
  113. <a href="{% url project.engines.views.detail poll.id %}"><li>{{ poll.engine }}</li></a>
  114. {% endfor %}
  115. {% else %}
  116. No polls are available.
  117. {% endif %}
  118.  
  119. </ul>
  120. {% endblock %}
  121. </div>
  122. </div>
  123. <div id="footer">
  124. {% block footer %}
  125. <p>Footer</p>
  126. {% endblock %}
  127. </div>
  128.  
  129. </div>
  130. </body>
  131.  
  132. </html>
Add Comment
Please, Sign In to add comment