forked from henryyan/henryyan.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
forum.html
68 lines (47 loc) · 1.88 KB
/
forum.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!--
You can put this page on your web server and see it working on your browser.
Follow these steps to embed this on your own page:
1. Copy the lines starting with (1) from the HEAD section to your own page's HEAD
2. Copy the A tag (2) from the BODY section anwhere inside your BODY
3. Verify that the page works on your browser.
4. Fine tune the looks with CSS. Details: http://moot.it/docs/?kafeitu#styling
For more help:
http://moot.it/docs/?kafeitu
http://moot.it/forum/
-->
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>论坛--咖啡兔</title>
<!-- (1) Optimize for mobile versions -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- (1) Moot look and feel -->
<link rel="stylesheet" href="http://cdn.moot.it/1.0/moot.css"/>
<!-- (4) Custom CSS -->
<style>
body {
font-family: "myriad pro", tahoma, verdana, arial, sans-serif;
margin: 0; padding: 0;
}
.moot {
font-size: 18px;
}
</style>
<!-- (1) Moot depends on jQuery v1.7 or greater -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<!-- (1) Moot client application -->
<script src="http://cdn.moot.it/1.0/moot.min.js"></script>
</head>
<body>
<!-- (2) Placeholder for the forum. The forum will be rendered inside this element -->
<a class="moot" href="http://api.moot.it/kafeitu"></a>
<!--
(2) Example tag for commenting, put it on a different page
<a class="moot" href="http://api.moot.it/kafeitu/blog#my-blog-entry"></a>
(2) Example tag for threaded commenting
<a class="moot" href="http://api.moot.it/kafeitu/blog/my-large-blog-entry"></a>
Moot paths are awesome: http://moot.it/docs/?kafeitu#path
-->
</body>
</html>