码迷,mamicode.com
首页 > Web开发 > 详细

HTML # 模板继承和导入

时间:2017-09-11 10:24:12      阅读:265      评论:0      收藏:0      [点我收藏+]

标签:jquer   nmon   text   class   charset   css   title   lang   block   

###

 

conmon.html

body{
    margin: 0;
}

 

###

master.htm

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>{% block title%}ttt{% endblock %}</title>
    <link rel="stylesheet" href="/static/conmon.css"/>
    <style>
        .ph-head{
            background-color: green;
            height: 100px;
        }
    </style>
    {% block css%} {% endblock %}
</head>
<body>
    <div class="ph-head">123</div>
    <div>
        {% block content %}
        {% endblock %}
    </div>
    <script src="/static/jquery-3.2.1.js"></script>    #js文件需要自己导入
    {% block js%} {% endblock %}
</body>
</html>

 

 ###

t2.html

<form>
    <input type="text"/>
    <input type="submit"/>
</form>

 

###

###

t1.html

{% extends ‘master.html‘ %}         ###继承父模板
{% block title %}lws{% endblock %}
{% block css%}
    <style>
        body{
            background-color: darkblue;
        }
    </style>
{% endblock %}
{% block content %}
    <ul>
        {% for row in User_list %}
            <li>{{ row }}</li>
        {% endfor %}
    </ul>
{% endblock %}

{% block js%}
    <script>
        alert(123)
    </script>
{% endblock %}

###

HTML # 模板继承和导入

标签:jquer   nmon   text   class   charset   css   title   lang   block   

原文地址:http://www.cnblogs.com/lwsup/p/7503001.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!