Add project files.

This commit is contained in:
2022-12-10 18:51:26 -08:00
parent b4277ba437
commit 1e6a1fc84b
78 changed files with 77366 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
@model List<AS1024.CommunityDocumentationPage.Models.Result>
@{
ViewData["Title"] = "BGP Communities";
}
<p>This site contains BGP communities for AS1024. Please note that these communities are subject to change at a moment's notice. We do not strip communities on received routes or on routes sent to peers and upstreams, but we cannot guarantee that the communities will be preserved by the upstream or peers. If you have any questions or need support, please reach out to noc@12393239.xyz.</p>
<p>The communities are as follows:</p>
<table class="table">
<thead>
<tr>
<th>Community Tag</th>
<th>Description</th>
</tr>
</thead>
@foreach (var item in Model) {
<tr>
<td>@item.Name</td>
<td>@item.Description</td>
</tr>
}
</table>

View File

@@ -0,0 +1,6 @@
@{
ViewData["Title"] = "Privacy Policy";
}
<h1>@ViewData["Title"]</h1>
<p>Use this page to detail your site's privacy policy.</p>