# block  站网页位置
# includ 导入网页标签
# extends 导入网页模板

#
common_js.html <script src="/static/plugins/jquery.min.js"> # footer.html <hr> <p>Thanks for visiting my site.</p> #base.html 母版 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"> <html lang="en"> <head> {% block title %}母版标题{% endblock %} {% include "common_js.html" %} </head> <body> {% block contend %}{% endblock %} {% include "footer.html" %} </body> </html> #index.html {% extends "base.html" %} {% block title %}网站首页{% endblock %} {% block content %} welcome to my index page ! {% endblock %}

 

相关文章:

  • 2021-07-28
  • 2021-06-30
  • 2022-02-10
  • 2022-01-17
  • 2019-02-24
  • 2022-01-16
  • 2021-08-23
猜你喜欢
  • 2021-06-21
  • 2021-09-22
  • 2022-12-23
  • 2022-02-12
  • 2022-12-23
  • 2022-12-23
  • 2021-07-13
相关资源
相似解决方案