Skip to content

Commit

Permalink
mustache based page initial check-in
Browse files Browse the repository at this point in the history
  • Loading branch information
karthik25 committed Sep 24, 2014
1 parent 8a32580 commit 6aa0b31
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
2 changes: 2 additions & 0 deletions AngularDemos/AngularDemos.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@
<Content Include="Scripts\knockout-2.1.0.debug.js" />
<Content Include="Scripts\knockout-2.1.0.js" />
<Content Include="Scripts\modernizr-2.5.3.js" />
<Content Include="Scripts\mustache.js" />
<Content Include="Scripts\_references.js" />
<Content Include="templates\ask.html" />
<Content Include="templates\elements.html" />
Expand All @@ -177,6 +178,7 @@
<Content Include="Scripts\jquery-2.1.1.min.map" />
<Content Include="Views\Home\Contact.cshtml" />
<Content Include="Views\Home\CheckboxList.cshtml" />
<Content Include="Views\Home\Mustache.cshtml" />
</ItemGroup>
<ItemGroup>
<Folder Include="App_Data\" />
Expand Down
5 changes: 5 additions & 0 deletions AngularDemos/Controllers/HomeController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,10 @@ public ActionResult CheckboxList()
{
return View();
}

public ActionResult Mustache()
{
return View();
}
}
}
6 changes: 6 additions & 0 deletions AngularDemos/Views/Home/Mustache.cshtml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
@{
ViewBag.Title = "Mustache";
}

<h2>Mustache</h2>

0 comments on commit 6aa0b31

Please sign in to comment.