Python-100-Days/Day41-55/oa/templates/index.html

13 lines
235 B
HTML

<!DOCTYPE html>
{% load staticfiles %}
<html lang="en">
<head>
<meta charset="UTF-8">
<title>首页</title>
</head>
<body>
<h1>{{ greeting }}</h1>
<hr>
<img src="{% static 'images/mm.jpg' %}" alt="">
</body>
</html>