Clean up front end code
This commit is contained in:
parent
e7ee6ada7c
commit
fe35067549
|
|
@ -7,20 +7,20 @@
|
||||||
|
|
||||||
|
|
||||||
<p>The communities are as follows:</p>
|
<p>The communities are as follows:</p>
|
||||||
|
<div class="table-responsive">
|
||||||
<table class="table">
|
<table class="table table-hover">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Community Tag</th>
|
<th scope="col">Community Tag</th>
|
||||||
<th>Description</th>
|
<th scope="col">Description</th>
|
||||||
<th>Community Type</th>
|
<th scope="col">Community Type</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
@foreach (var item in Model) {
|
@foreach (var item in Model) {
|
||||||
<tr>
|
<tr>
|
||||||
<td>@item.Name</td>
|
<td scope="row">@item.Name</td>
|
||||||
<td>@item.Description</td>
|
<td scope="row">@item.Description</td>
|
||||||
<td>
|
<td scope="row">
|
||||||
@foreach (var tags in item.Tags) {
|
@foreach (var tags in item.Tags) {
|
||||||
<div class="d-inline-flex p-2 text-white" style="background-color:#@tags.color">@tags.display</div>
|
<div class="d-inline-flex p-2 text-white" style="background-color:#@tags.color">@tags.display</div>
|
||||||
}
|
}
|
||||||
|
|
@ -28,3 +28,4 @@
|
||||||
</tr>
|
</tr>
|
||||||
}
|
}
|
||||||
</table>
|
</table>
|
||||||
|
</div>
|
||||||
|
|
@ -1,6 +0,0 @@
|
||||||
@{
|
|
||||||
ViewData["Title"] = "Privacy Policy";
|
|
||||||
}
|
|
||||||
<h1>@ViewData["Title"]</h1>
|
|
||||||
|
|
||||||
<p>Use this page to detail your site's privacy policy.</p>
|
|
||||||
Loading…
Reference in New Issue