-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.cfm
59 lines (51 loc) · 1.02 KB
/
index.cfm
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
<cfsilent>
<cfset title = 'Home' />
<cfset pathRoot = '' />
<cfset scripts = '' />
<cfsavecontent variable="content">
<cfoutput>
<div class="grid_12">
<p>
Welcome to the mongo4cf project!
</p>
</div>
<!---
<div class="grid_6">
<dl>
<dt>
<a href="<cfoutput>#pathRoot#</cfoutput>example/index.cfm">
Examples
</a>
</dt>
<dd>
See examples of the mongo4cf in action!
</dd>
</dl>
</div>
--->
<div class="grid_6">
<dl>
<!---
<dt>
<a href="<cfoutput>#pathRoot#</cfoutput>profile/index.cfm">
Profiling
</a>
</dt>
<dd>
Test out just how fast mongo4cf runs on your engine.
</dd>
--->
<dt>
<a href="<cfoutput>#pathRoot#</cfoutput>test/index.cfm">
Unit Tests
</a>
</dt>
<dd>
Run the MXUnit Tests in your browser.
</dd>
</dl>
</div>
</cfoutput>
</cfsavecontent>
</cfsilent>
<cfinclude template="theme/index.cfm" />