Skip to content

Commit

Permalink
Target GenerateHelp is now working
Browse files Browse the repository at this point in the history
  • Loading branch information
7er committed Oct 5, 2015
1 parent 12e75e9 commit fd0ee56
Show file tree
Hide file tree
Showing 6 changed files with 65 additions and 0 deletions.
Binary file added docs/files/img/logo-template.pdn
Binary file not shown.
Binary file added docs/files/img/logo.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file removed docs/tools/.dir
Empty file.
58 changes: 58 additions & 0 deletions docs/tools/templates/template.cshtml
@@ -0,0 +1,58 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>@Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="description" content="@Description"/>
<meta name="author" content="@Properties["project-author"]"/>

<script src="https://code.jquery.com/jquery-1.8.0.js"></script>
<script src="https://code.jquery.com/ui/1.8.23/jquery-ui.js"></script>
<script src="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.1/js/bootstrap.min.js"></script>
<link href="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.1/css/bootstrap-combined.min.css" rel="stylesheet"/>

<link type="text/css" rel="stylesheet" href="@Root/content/style.css" />
<script type="text/javascript" src="@Root/content/tips.js"></script>
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="masthead">
<ul class="nav nav-pills pull-right">
<li><a href="http://fsharp.org">fsharp.org</a></li>
<li><a href="@Properties["project-github"]">github page</a></li>
</ul>
<h3 class="muted"><a href="@Root/index.html">@Properties["project-name"]</a></h3>
</div>
<hr />
<div class="row">
<div class="span9" id="main">
@RenderBody()
</div>
<div class="span3">
<img src="@Root/img/logo.png" alt="F# Project" style="width:150px;margin:10px" />
<ul class="nav nav-list" id="menu" style="margin-top: 20px;">
<li class="nav-header">@Properties["project-name"]</li>
<li><a href="@Root/index.html">Home page</a></li>
<li class="divider"></li>
<li><a href="@Properties["project-nuget"]">Get Library via NuGet</a></li>
<li><a href="@Properties["project-github"]">Source Code on GitHub</a></li>
<li><a href="@Root/license.html">License</a></li>
<li><a href="@Root/release-notes.html">Release Notes</a></li>

<li class="nav-header">Getting started</li>
<li><a href="@Root/tutorial.html">Sample tutorial</a></li>

<li class="nav-header">Documentation</li>
<li><a href="@Root/reference/index.html">API Reference</a></li>
</ul>
</div>
</div>
</div>
<a href="@Properties["project-github"]"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png" alt="Fork me on GitHub"/></a>
</body>
</html>
1 change: 1 addition & 0 deletions paket.dependencies
@@ -1,5 +1,6 @@
source https://nuget.org/api/v2

nuget FSharp.Formatting
nuget FAKE
nuget SourceLink.Fake
nuget xunit
Expand Down
6 changes: 6 additions & 0 deletions paket.lock
Expand Up @@ -2,6 +2,12 @@ NUGET
remote: https://nuget.org/api/v2
specs:
FAKE (4.4.6)
FSharp.Compiler.Service (0.0.90)
FSharp.Formatting (2.11.0)
FSharp.Compiler.Service (>= 0.0.90 <= 1.3)
FSharpVSPowerTools.Core (1.9.0)
FSharpVSPowerTools.Core (1.9.0)
FSharp.Compiler.Service (>= 0.0.90)
Microsoft.Bcl (1.1.10)
Microsoft.Bcl.Build (>= 1.0.14)
Microsoft.Bcl.Build (1.0.21) - import_targets: false
Expand Down

0 comments on commit fd0ee56

Please sign in to comment.