You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.5 KiB
49 lines
1.5 KiB
6 months ago
|
{% load static %}
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||
|
<meta name="description" content="基于Django的视频点播网站">
|
||
|
<meta name="google-site-verification" content="UhrjUG70pwiY6Sp4u4p5Q3ol8iD7yx4ZSwmGBpoaWik" />
|
||
|
<link rel="icon" href="{% static 'img/favicon.ico' %}" type="image/x-icon">
|
||
|
<title>视点</title>
|
||
|
|
||
|
<link rel="stylesheet" type="text/css" href="https://cdn.staticfile.org/semantic-ui/2.4.1/semantic.min.css">
|
||
|
<link rel="stylesheet" type="text/css" href="{% static 'css/semantic.custom.css' %}">
|
||
|
<link rel="stylesheet" type="text/css" href="{% static 'css/style.css' %}">
|
||
|
{% block css %}{% endblock css %}
|
||
|
|
||
|
<script>
|
||
|
var _hmt = _hmt || [];
|
||
|
(function() {
|
||
|
var hm = document.createElement("script");
|
||
|
hm.src = "https://hm.baidu.com/hm.js?e3be3decd24d944e0bc592558617d210";
|
||
|
var s = document.getElementsByTagName("script")[0];
|
||
|
s.parentNode.insertBefore(hm, s);
|
||
|
})();
|
||
|
</script>
|
||
|
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
{% include "base/header.html" %}
|
||
|
<div class="ui container" id="v-content">
|
||
|
{% block content %}
|
||
|
{% endblock content %}
|
||
|
</div>
|
||
|
{% include "base/footer.html" %}
|
||
|
|
||
|
<script src="https://cdn.staticfile.org/jquery/1.9.0/jquery.min.js"></script>
|
||
|
<script src="https://cdn.staticfile.org/semantic-ui/2.4.1/semantic.min.js"></script>
|
||
|
<script>
|
||
|
var search_url = "{% url 'video:search' %}"
|
||
|
</script>
|
||
|
<script src="{% static 'js/header.js' %}"></script>
|
||
|
|
||
|
{% block javascript %}
|
||
|
{% endblock javascript %}
|
||
|
|
||
|
{% block modal %}
|
||
|
{% endblock modal %}
|
||
|
|
||
|
</body>
|
||
|
</html>
|