-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
39 lines (39 loc) · 1.69 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html ng-app="airpub" ng-controller="global">
<head ng-controller="meta">
<base href="/" />
<meta charset="UTF-8">
<title ng-bind="title"></title>
<meta name="fragment" content="!" />
<meta name="description" content="{{description}}">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<!-- dependencies stylesheets and scripts -->
<link rel="stylesheet" href="http://cdn.airpub.io/0.4.0-unstable/airpub-dependencies.min.css?v=0.4.0_2">
<script src="http://cdn.airpub.io/0.4.0-unstable/airpub-dependencies.min.js?v=0.4.0_2"></script>
<!-- default theme: chill -->
<link rel="stylesheet" href="themes/chill/0.3.0/css/chill.min.css" />
<link rel="shortcut icon" type="image/x-icon" href="themes/chill/0.3.0/favicon.ico" />
</head>
<body ng-controller="base" ng-class="state.current.controller">
<div ui-view="layout"></div>
<script>
var airpubConfigs = {
name: 'Airpub', // blog name
description: '轻如蝉翼的写作工具', // just a little description
url: 'http://airpub.io', // blog uri
theme: 'chill/0.3.0', // current theme
themePath: 'themes', // theme Path
staticPath: 'http://cdn.airpub.io/', // static file path
upyun: { // for images upload
bucket: 'airpub',
form_api_secret: 'FWCh9Op1PNDJ0RkT6H+C5kJ6oSI='
}
}
var duoshuoQuery = {
short_name: 'airpub' // for backend service
};
</script>
<script src="http://static.duoshuo.com/embed.js"></script>
<script src="http://cdn.airpub.io/0.4.0-unstable/airpub.min.js?v=0.4.0_2"></script>
</body>
</html>