-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathIndex.cshtml
More file actions
47 lines (45 loc) · 1.85 KB
/
Index.cshtml
File metadata and controls
47 lines (45 loc) · 1.85 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
@page
@model IndexModel
@{
ViewData["Title"] = "Home page";
}
<div class="card text-center">
<div class="card-body">
<h5 class="card-title">.NET 💜 Azure v5</h5>
<p class="card-text">Learn about <a href="https://learn.microsoft.com/aspnet/core">building Web apps with ASP.NET Core</a>.</p>
<p class="card-text">Visit our <a asp-page="/About">About GHAS</a> page to learn about GitHub Advanced Security features.</p>
<p class="card-text">
<strong>🚀 New!</strong> Check out our <a asp-page="/DevSecOps" class="btn btn-primary btn-sm">DevSecOps Demo</a>
to explore the latest GitHub Advanced Security features and best practices.
</p>
</div>
</div>
<div class="row mt-4">
<div class="col-md-6">
<div class="card">
<div class="card-header bg-info text-white">
<h5 class="mb-0">🔐 Security Features</h5>
</div>
<div class="card-body">
<ul class="list-unstyled">
<li>✅ Code Scanning with CodeQL</li>
<li>✅ Secret Scanning</li>
<li>✅ Dependency Management</li>
<li>✅ Security Advisories</li>
</ul>
<a asp-page="/DevSecOps" class="btn btn-outline-info">Explore GHAS →</a>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card">
<div class="card-header bg-success text-white">
<h5 class="mb-0">🛠️ DevSecOps Integration</h5>
</div>
<div class="card-body">
<p>Learn how to integrate security into your development workflow with our comprehensive DevSecOps guide.</p>
<a asp-page="/DevSecOps" class="btn btn-success">Get Started</a>
</div>
</div>
</div>
</div>