-
Notifications
You must be signed in to change notification settings - Fork 12
/
index.cfm
executable file
·37 lines (34 loc) · 1.35 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
<cfscript>
/**
*
* This file is part of MuraPlugin
*
* Copyright 2013-2016 Stephen J. Withington, Jr.
* Licensed under the Apache License, Version v2.0
* http://www.apache.org/licenses/LICENSE-2.0
*
*/
</cfscript>
<style type="text/css">
#bodyWrap h3{padding-top:1em;}
#bodyWrap ul{padding:0 0.75em;margin:0 0.75em;}
</style>
<cfsavecontent variable="body"><cfoutput>
<div id="bodyWrap">
<h1>#HTMLEditFormat(pluginConfig.getName())#</h1>
<p>This is a starter plugin to jumpstart your next Mura CMS plugin.</p>
<h3>Tested With</h3>
<ul>
<li><a href="http://www.getmura.com">Mura CMS</a> Core Version <strong>7.0+</strong></li>
<li><a href="http://www.adobe.com/coldfusion">Adobe ColdFusion</a> <strong>2016.0.02.299200</strong></li>
<li><a href="http://lucee.org">Lucee</a> <strong>5.0.0.254</strong></li>
</ul>
<h3>Need help?</h3>
<p>If you're running into an issue, please let me know at <a href="https://github.com/stevewithington/#HTMLEditFormat(pluginConfig.getPackage())#/issues">https://github.com/stevewithington/#HTMLEditFormat(pluginConfig.getPackage())#/issues</a> and I'll try to address it as soon as I can.</p>
<h3>Cheers!<br />
<a href="http://stephenwithington.com">Steve Withington</a></h3>
</div>
</cfoutput></cfsavecontent>
<cfoutput>
#$.getBean('pluginManager').renderAdminTemplate(body=body, pagetitle=pluginConfig.getName())#
</cfoutput>