Skip to content

Commit 79cace6

Browse files
committed
Adding cshtml template
1 parent 7d67bb9 commit 79cace6

1 file changed

Lines changed: 54 additions & 0 deletions

File tree

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8"/>
5+
<title>@Title</title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
7+
<meta name="description" content="@Description"/>
8+
<meta name="author" content="@Properties["project-author"]"/>
9+
10+
<script src="https://code.jquery.com/jquery-1.8.0.js"></script>
11+
<script src="https://code.jquery.com/ui/1.8.23/jquery-ui.js"></script>
12+
<script src="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.1/js/bootstrap.min.js"></script>
13+
<link href="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.1/css/bootstrap-combined.min.css" rel="stylesheet"/>
14+
15+
<link type="text/css" rel="stylesheet" href="@Root/content/style.css" />
16+
<script type="text/javascript" src="@Root/content/tips.js"></script>
17+
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
18+
<!--[if lt IE 9]>
19+
<script src="https://html5shim.googlecode.com/svn/trunk/html5.js"></script>
20+
<![endif]-->
21+
</head>
22+
<body>
23+
<div class="container">
24+
<div class="masthead">
25+
<ul class="nav nav-pills pull-right">
26+
<li><a href="http://fsharp.org">fsharp.org</a></li>
27+
<li><a href="@Properties["project-github"]">github page</a></li>
28+
</ul>
29+
<h3 class="muted"><a href="@Root/index.html">@Properties["project-name"]</a></h3>
30+
</div>
31+
<hr />
32+
<div class="row">
33+
<div class="span9" id="main">
34+
@RenderBody()
35+
</div>
36+
<div class="span3">
37+
<ul class="nav nav-list" id="menu" style="margin-top: 20px;">
38+
<li class="nav-header">@Properties["project-name"]</li>
39+
<li><a href="@Root/index.html">Home page</a></li>
40+
<li class="divider"></li>
41+
<li><a href="@Properties["project-nuget"]">Get Library via NuGet</a></li>
42+
<li><a href="@Properties["project-github"]">Source Code on GitHub</a></li>
43+
<li><a href="@Properties["project-github"]/blob/master/License.md">License</a></li>
44+
45+
<li class="nav-header">Documentation</li>
46+
<li><a href="@Root/tutorial.html">Tutorial</a></li>
47+
<li><a href="@Root/reference/index.html">API Reference</a></li>
48+
</ul>
49+
</div>
50+
</div>
51+
</div>
52+
<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>
53+
</body>
54+
</html>

0 commit comments

Comments
 (0)