赞
踩
使用{% block content %}来包裹需要改变的地方,其它不变。
- {# 其它地方不变,使用block包裹需要改变的地方#}
- {% block content %}
-
- <h1>Weclome to China</h1>
-
- {% endblock %}
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Title</title>
- <style>
- * {
- margin: 0;
- padding: 0;
- }
-
- .nav {
- line-height: 40px;
- width: 100%;
- background-color: midnightblue;
- color: white;
- font-size: 20px;
- text-align: center;
- }
-
- .left, .content {
- float: left;
- }
-
- .left {
- width: 20%;
- min-height: 600px;
- overflow: auto;
- background-color: lightgray;
-
-
- }
-
-
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。