This repository was archived by the owner on May 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathIndex.cshtml
209 lines (199 loc) · 9.65 KB
/
Index.cshtml
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
@model dotnetfoundation.ViewModels.ProjectListViewModel
@{
ViewData["Title"] = "Projects";
ViewData["BodyClass"] = "pages";
string repoChecked = null;
string projectChecked = null;
if (Model.Type == "repository")
{
repoChecked = "checked";
}
else
{
projectChecked = "checked";
}
}
<section class="page-section page-section--purple">
<div class="page-section_container container">
<div class="page-section_row row">
<div class="page-section_column col-12 text-center">
<h2>
.NET Foundation Projects
</h2>
<p class="mx-auto">
Projects—and the people behind them—are at the heart of what .NET Foundation is all about. These days, you’ll find a wide variety of projects, including the .NET Compiler Platform, ASP.NET, .NET Core, and Xamarin Forms, along with the popular .NET open-source frameworks xUnit and Reactive Extensions.
</p>
<p class="mx-auto">
Can you contribute to something already in the works? Browse our projects below to find out how to contribute!
</p>
<p class="mx-auto">
Of course, we’re always on the lookout for new open-source projects to support. Learn <a target="_blank" href="https://github.com/dotnet/foundation/blob/master/guidance/new-projects.md">how to submit your project</a>.
</p>
<div class="container">
<form id="search" method="get">
<div class="form-group col-6 offset-3">
<div class="input-group">
<input class="form-control" id="searchquery" name="searchquery" type="text" value="@Model.SearchQuery" />
<button type="submit" class="btn btn-primary mb-2"><i class="fa fa-search"></i></button>
</div>
</div>
<div class="row sr-only">
<div class="form-groupr">
<label>
<input id="type" name="type" type="radio" value="project" @projectChecked /> Projects
</label>
</div>
<div class="form-group>
<label>
<input id="type" name="type" type="radio" value="repository" @repoChecked /> Repositories
</label>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
<section class="page-section">
<div class="page-section_container container">
<div class="page-section_row row">
<div class="page-section_column col-lg-3 col-sm-6">
<div class="icon-box icon-box--grey d-flex flex-column align-items-center">
<div class="icon-box_stat">
@Model.Summary.Contributors
</div>
<div class="icon-box_icon">
<img src="~/img/developers_icon.png">
</div>
<div class="icon-box_label">
Contributors
</div>
</div>
</div>
<div class="page-section_column col-lg-3 col-sm-6 pad-fix--sm">
<div class="icon-box icon-box--grey d-flex flex-column align-items-center">
<div class="icon-box_stat">
@Model.Summary.Organizations
</div>
<div class="icon-box_icon">
<img src="~/img/building_icon.png">
</div>
<div class="icon-box_label">
GitHub Orgs
</div>
</div>
</div>
<div class="page-section_column col-lg-3 col-sm-6 pad-fix--lg">
<div class="icon-box icon-box--grey d-flex flex-column align-items-center">
<div class="icon-box_stat">
@Model.Summary.Projects
</div>
<div class="icon-box_icon">
<img src="~/img/member_projects_icon.png">
</div>
<div class="icon-box_label">
Repositories
</div>
</div>
</div>
<div class="page-section_column col-lg-3 col-sm-6 pad-fix--lg">
<div class="icon-box icon-box--grey animation-delay--6 d-flex flex-column align-items-center" data-delay="700">
<div class="icon-box_stat counter">
@Model.Summary.Forks
</div>
<div class="icon-box_icon">
<img src="~/img/github_icon.png">
</div>
<div class="icon-box_label">
Forks
</div>
</div>
</div>
</div>
</div>
</section>
<section class="page-section">
<div class="page-section_container container">
<div class="page-section_row row text-left">
<div class="page-section_column col-12">
@if (Model.Type == "repository")
{
@foreach (var item in Model.ProjectRepos.Data)
{
<article class="content-item project">
<header>
<h3><a target="_blank" href="@item.Url">@item.Name </a></h3>
</header>
<p>@item.Description</p>
</article>
}
<div>
<cs-pager asp-action="Index" asp-controller="Projects"
asp-route-q="@Model.SearchQuery"
asp-route-type="@Model.Type"
asp-route-ps="@Model.ProjectRepos.PageSize"
cs-paging-pagenumber="@Model.ProjectRepos.PageNumber"
cs-paging-totalitems="@Model.ProjectRepos.TotalItems"
cs-pagenumber-param="pn"
cs-pager-ul-class="pagination d-flex flex-wrap"
cs-pager-li-current-class="page-item active"
cs-pager-li-other-class="page-item"
cs-pager-li-non-active-class="page-item disabled"
cs-pager-link-current-class="page-link"
cs-pager-link-other-class="page-link"
></cs-pager>
</div>
}
else
{
@foreach (var item in Model.Projects.Data)
{
<article class="row">
@{
var contributor = item.Contributor;
}
@if (contributor != null)
{
if (!string.IsNullOrWhiteSpace(contributor.Logo))
{
<div class="col-4"><a href="@contributor.Web"><img class="img-responsive contrib-logos" src="@contributor.Logo" alt="@contributor.Name" /></a></div>
}
else
{
<div class="col-4"><a href="@contributor.Web">@contributor.Name</a></div>
}
}
<div class="col-8" data-mdurl="https://raw.githubusercontent.com/dotnet/home/master/projects/@item.Name"></div>
</article><hr />
}
<div>
<cs-pager asp-action="Index" asp-controller="Projects"
asp-route-q="@Model.SearchQuery"
asp-route-type="@Model.Type"
asp-route-ps="@Model.Projects.PageSize"
cs-paging-pagenumber="@Model.Projects.PageNumber"
cs-paging-totalitems="@Model.Projects.TotalItems"
cs-pagenumber-param="pn"
cs-pager-ul-class="pagination d-flex flex-wrap"
cs-pager-li-current-class="page-item active"
cs-pager-li-other-class="page-item"
cs-pager-li-non-active-class="page-item disabled"
cs-pager-link-current-class="page-link"
cs-pager-link-other-class="page-link"
></cs-pager>
</div>
}
</div>
</div>
</div>
</section>
@section Scripts {
<environment names="Development">
<script src="~/lib/showdown/showdown.min.js"></script>
</environment>
<environment names="Staging,Production">
<script src="https://cdnjs.cloudflare.com/ajax/libs/showdown/1.9.0/showdown.min.js" integrity="sha256-LSUpTY0kkXGKvcBC9kbmgibmx3NVVgJvAEfTZbs51mU=" crossorigin="anonymous"></script>
</environment>
<script src="~/lib/showdown-unobtrusive/showdown-unobtrusive.js" asp-append-version="true"></script>
}