35 lines
1.0 KiB
Plaintext
35 lines
1.0 KiB
Plaintext
<!DOCTYPE html>
|
|
<html ng-app="wechat">
|
|
<head>
|
|
<base href="/">
|
|
<title>Trustie平台</title>
|
|
<meta charset='utf-8' />
|
|
<meta name="keywords" content="" />
|
|
<meta name="description" content="" />
|
|
<meta name="apple-mobile-web-app-capable" content="no" />
|
|
<meta content='True' name='HandheldFriendly' />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
|
|
<link type="text/css" rel="stylesheet" href="/stylesheets/weui/weui.min.css" />
|
|
<%= stylesheet_link_tag '/stylesheets/weui/weixin.css' %>
|
|
|
|
<script type="text/javascript">
|
|
window.g_debug = false; //调试标志,如果在本地请置为true
|
|
window.apiUrl = '/api/v1/';
|
|
window.g_redirect_path = '<%= @path %>';
|
|
<% if @course_id %>
|
|
window.g_courseid = <%= @course_id %>;
|
|
<% end %>
|
|
</script>
|
|
|
|
</head>
|
|
<body>
|
|
<div ng-view>
|
|
</div>
|
|
|
|
<!--<script src="https://dn-demotest.qbox.me/angular.all.min.js"></script>-->
|
|
<script src="/javascripts/wechat/build/angular.all.min.js"></script>
|
|
<%= include_wechat_jsfile %>
|
|
</body>
|
|
|
|
</html>
|