-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathDevSecOps.cshtml
More file actions
43 lines (40 loc) · 1.73 KB
/
DevSecOps.cshtml
File metadata and controls
43 lines (40 loc) · 1.73 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
@page
@model DevSecOpsModel
@{
ViewData["Title"] = "DevSecOps";
}
<h1>@ViewData["Title"]</h1>
<p>Stay up-to-date with the latest advancements in GitHub Advanced Security.</p>
<h2>Latest News</h2>
<div class="card-deck">
<div class="card">
<div class="card-body">
<h5 class="card-title">GitHub Universe 2025 Highlights</h5>
<p class="card-text">Discover the key announcements from GitHub Universe 2025, including new features for Advanced Security that help you build more secure applications.</p>
<a href="#" class="btn btn-primary">Read More</a>
</div>
<div class="card-footer">
<small class="text-muted">Posted on May 8, 2025</small>
</div>
</div>
<div class="card">
<div class="card-body">
<h5 class="card-title">Secret Scanning Enhancements</h5>
<p class="card-text">Learn about the latest improvements to secret scanning, including expanded partner patterns and new detection capabilities to keep your secrets safe.</p>
<a href="#" class="btn btn-primary">Read More</a>
</div>
<div class="card-footer">
<small class="text-muted">Posted on April 25, 2025</small>
</div>
</div>
<div class="card">
<div class="card-body">
<h5 class="card-title">CodeQL Gets Faster and Smarter</h5>
<p class="card-text">Explore the performance and intelligence upgrades to CodeQL, enabling faster and more accurate security analysis of your codebases.</p>
<a href="#" class="btn btn-primary">Read More</a>
</div>
<div class="card-footer">
<small class="text-muted">Posted on April 10, 2025</small>
</div>
</div>
</div>