forked from Steve-Fenton/jQuery-Plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemotemplate.html
50 lines (47 loc) · 1.28 KB
/
demotemplate.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>[PLUGIN TITLE] Example</title>
<link rel="stylesheet" type="text/css" href="optional.css">
<style type="text/css">
/* Recommended styles */
/* Optional styles */
</style>
</head>
<body>
<div id="links">
<p>This is the live demo, <a href="[YOUR_DOCUMENTATION_LINK]">view the documentation</a>.
Written by <a href="[YOUR_HOME_PAGE_LINK]">[YOUR_NAME]</a>.</p>
</div>
<div id="header">
<h1>[PLUGIN TITLE] Example</h1>
</div>
<div id="maincontent">
<div id="what">
<h2>[PLUGIN TITLE] Summary</h2>
<p>[SHORT_DESCRIPTION]</p>
</div>
<div id="how">
{HTML_FOR_EXAMPLE_GOES_HERE]
</div>
<div id="options">
<h2>Options</h2>
<dl>
<dt>[OPTION_NAME]</dt>
<dd>[OPTION_DESCRIPTION]</dd>
</dl>
</div>
</div>
<script type="text/javascript" src="[YOUR_FRAMEWORK].js"></script>
<script type="text/javascript" src="[YOUR_PLUGIN].js"></script>
<script type="text/javascript">
// [SCRIPT_TO_RUN_DEMO]
</script>
<!-- Just for web stats... not needed for the plugin -->
<script type="text/javascript">
var myMasterUri = "http://www.stevefenton.co.uk/";
var myStatUrl = "http://www.stevefenton.co.uk/reports/";
</script>
<script type="text/javascript" src="/reports/swiftstats.js"></script>
</body>
</html>