Skip to content

Commit

Permalink
Added index.html to the build output.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgorbatchev committed Jul 2, 2010
1 parent f2c16aa commit 045ad22
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 42 deletions.
3 changes: 3 additions & 0 deletions build/build.xml
Expand Up @@ -76,6 +76,9 @@
<include name="compass/**" />
<include name="*-LICENSE" />
</fileset>
<fileset dir="${includes.dir}">
<include name="index.html" />
</fileset>
</copy>

<delete dir="${output.dir}/compass/.sass-cache" />
Expand Down
22 changes: 22 additions & 0 deletions build/includes/index.html
@@ -0,0 +1,22 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Hello SyntaxHighlighter</title>
<script type="text/javascript" src="scripts/shCore.js"></script>
<script type="text/javascript" src="scripts/shBrushJScript.js"></script>
<link type="text/css" rel="stylesheet" href="styles/shCoreDefault.css"/>
<script type="text/javascript">SyntaxHighlighter.all();</script>
</head>

<body style="background: white; font-family: Helvetica">

<h1>Hello SyntaxHighlighter</h1>
<pre class="brush: js;">
function helloSyntaxHighlighter()
{
return "hi!";
}
</pre>

</html>
42 changes: 0 additions & 42 deletions build/test.html

This file was deleted.

0 comments on commit 045ad22

Please sign in to comment.