6a68fc9da7
git-svn-id: http://google-refine.googlecode.com/svn/trunk@1887 7d457c2a-affb-35e4-300a-418c747d4874
23 lines
616 B
Plaintext
23 lines
616 B
Plaintext
#*
|
|
* Access this page at the URL /extension/sample/
|
|
*#
|
|
<html>
|
|
<head>
|
|
<title>Sample Extension</title>
|
|
</head>
|
|
<body>
|
|
<h1>Sample Extension</h1>
|
|
|
|
<p>If an extension needs its own page, then this is such an example.
|
|
However, mostly, extensions only need to inject their own scripts
|
|
and styles into the /project page.
|
|
</p>
|
|
|
|
<p>Here is someString: $someString, and someInt: $someInt</p>
|
|
|
|
<p>Here is a sample list using a veloci-macro:</p>
|
|
|
|
#set( $greatlakes = ["Superior","Michigan","Huron","Erie","Ontario"] )
|
|
#makeAList( $greatlakes )
|
|
</body>
|
|
</html> |