102 lines
3.5 KiB
HTML
102 lines
3.5 KiB
HTML
{% 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/animate.css/animate.min.css" %}" rel="stylesheet">
|
||
<link href="{% static "bower_components/ol3/ol.css" %}" rel="stylesheet">
|
||
<link href="{% static "portal/css/style.css" %}" rel="stylesheet">
|
||
<link href="{% static "portal/css/iconfont.css" %}" rel="stylesheet">
|
||
<link href="{% static "graphics/css/map.css" %}" rel="stylesheet">
|
||
{% block add_css %} {% endblock %}
|
||
</head>
|
||
<body>
|
||
{% include "header.html" %}
|
||
{% block content %}
|
||
内容
|
||
{% endblock %}
|
||
<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/ol3/ol-debug.js" %}"></script>
|
||
<script src="{% static "bower_components/jquery.template/jquery.template.js" %}"></script>
|
||
<script src="{% static "graphics/script/jquery.cyclotron.js" %}"></script>
|
||
<script src="{% static "portal/script/portal.js" %}"></script>
|
||
<script src="{% static "graphics/script/map.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>
|
||
<script type="text/template" id="popup-template">
|
||
<table class="table table-bordered">
|
||
<tr>
|
||
<td>断面桩号</td>
|
||
<td class="text-name"></td>
|
||
</tr>
|
||
<tr>
|
||
<td>温度</td>
|
||
<td class="text-thermometer"></td>
|
||
</tr>
|
||
<tr>
|
||
<td>位移</td>
|
||
<td class="text-shift"></td>
|
||
</tr>
|
||
<tr>
|
||
<td>应变</td>
|
||
<td class="text-strain"></td>
|
||
</tr>
|
||
<tr>
|
||
<td>钢弦</td>
|
||
<td class="text-reinforcement"></td>
|
||
</tr>
|
||
<tr>
|
||
<td>水分</td>
|
||
<td class="text-humidity"></td>
|
||
</tr>
|
||
<tr>
|
||
<td>采集仪</td>
|
||
<td class="text-rtu"></td>
|
||
</tr>
|
||
<tr>
|
||
<td>保护箱</td>
|
||
<td class="text-box"></td>
|
||
</tr>
|
||
</table>
|
||
</script>
|
||
<script type="text/template" id="popup-land-template">
|
||
<table class="table table-bordered">
|
||
<tr>
|
||
<td>钻孔名称</td>
|
||
<td class="text-name"></td>
|
||
</tr>
|
||
<tr>
|
||
<td>编号</td>
|
||
<td class="text-code"></td>
|
||
</tr>
|
||
<tr>
|
||
<td>类型</td>
|
||
<td class="text-type"></td>
|
||
</tr>
|
||
<tr>
|
||
<td>深度</td>
|
||
<td class="text-depth"></td>
|
||
</tr>
|
||
</table>
|
||
</script>
|
||
</body>
|
||
</html> |