g214/portal/templates/base_layout.html

46 lines
2.1 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% load static %}
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-COMPATIBLE" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %}
默认标题
{% endblock %}</title>
<link href="{% static "bower_components/bootstrap/dist/css/bootstrap.min.css" %}" rel="stylesheet">
<link href="{% static "bower_components/font-awesome/css/font-awesome.min.css" %}" rel="stylesheet">
<link href="{% static "bower_components/owl.carousel/dist/assets/owl.carousel.min.css" %}" rel="stylesheet">
<link href="{% static "bower_components/owl.carousel/dist/assets/owl.theme.default.css" %}" rel="stylesheet">
<link href="{% static "bower_components/animate.css/animate.min.css" %}" rel="stylesheet">
{# <link href="{% static "portal/css/portal.css" %}" rel="stylesheet">#}
<link href="{% static "portal/css/style.css" %}" rel="stylesheet">
<link href="{% static "portal/css/iconfont.css" %}" rel="stylesheet">
{% block add_css %} {% endblock %}
</head>
<body>
{% include "header.html" %}
{% block content %}
内容
{% endblock %}
{% include "footer.html" %}
<script src="{% static "bower_components/jquery/dist/jquery.min.js" %}"></script>
<script src="{% static "bower_components/bootstrap/dist/js/bootstrap.min.js" %}"></script>
<script src="{% static "bower_components/modernizr/modernizr.js" %}"></script>
<script src="{% static "bower_components/owl.carousel/dist/owl.carousel.min.js" %}"></script>
<script src="{% static "bower_components/jquery_appear/jquery.appear.js" %}"></script>
<script src="{% static "portal/script/portal.js" %}"></script>
{% block add_script %} {% endblock %}
<script type="text/template" id="alert-template">
<div id="indicator" class="alert class-category alert-dismissible fade in" role="alert">
<button type="button" class="close" data-dismiss="alert"><span aria-hidden="true">×</span><span
class="sr-only">Close</span></button>
<strong class="text-result"></strong><span class="text-message"></span>
</div>
</script>
</body>
</html>