forked from zzzprojects/System.Linq.Dynamic.Core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDownloads.cshtml
More file actions
26 lines (24 loc) · 1.3 KB
/
Downloads.cshtml
File metadata and controls
26 lines (24 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
@{
ViewBag.Title = "Downloads";
}
<h2>@ViewBag.Title</h2>
<div class="row">
<div class="col-lg-4 col-md-6">
<div class="panel panel-default">
<div class="panel-heading"><a href="@Settings.GitHubLink" target="_blank"><img src="@Settings.GitHubLogo" style="height:50px" alt="GitHub Logo" /><img src="@Settings.GitHubLogoText" style="height:50px" alt="GitHub" /></a> - Source Code</div>
<div class="panel-body">
<p><a href="@Settings.GitHubLink/releases/latest" target="_blank">Get the Latest Release</a></p>
<p><a href="@Settings.GitHubLink/releases" target="_blank">All Release</a></p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="panel panel-default">
<div class="panel-heading"><a href="@Settings.NugetLink" target="_blank"><img src="@Settings.NugetLogo" style="height:50px" alt="NuGet" /></a> - Binaries</div>
<div class="panel-body">
<p><a href="@Settings.NugetLink" target="_blank">NuGet</a> is the package manager for this project. The NuGet client tools provide an easy way for developers to consume it.</p>
<p>Use NuGet to incorperate Dynamic LINQ into your Visual Studio project.</p>
</div>
</div>
</div>
</div>