Skip to content

Commit 1e4c718

Browse files
committed
Add Logo, Icons, Author
1 parent dfb1c01 commit 1e4c718

10 files changed

Lines changed: 14 additions & 4 deletions

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,6 @@ Go to https://dsomm.timo-pagel.de or clone [this repository](https://github.com/
4040
* App Sec Maturity Models Mapping
4141
* CAMS Categorization
4242
* Addinng of evidence
43+
44+
# Sponsors
45+
[![Timo Pagel IT-Consulting](https://raw.githubusercontent.com/DefectDojo/Documentation/master/doc/img/timo-pagel-logo.png)](https://pagel.pro) (Time, Logo, Icons)
478 KB
Loading

assets/images/Culture and Org..png

372 KB
Loading
359 KB
Loading

assets/images/Infrastructure.png

342 KB
Loading
566 KB
Loading

assets/images/logo.png

59.9 KB
Loading

data.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ function readYaml($file) {
1414
"Build and Deployment" => readYaml("data/BuildandDeployment.yml"),
1515
"Information Gathering" => readYaml("data/Informationgathering.yml"),
1616
"Infrastructure" => readYaml("data/Infrastructure.yml"),
17-
"Test and Verification" => readYaml("data/TestandVerification.yml"),
18-
"Patch Management" => readYaml("data/PatchManagement.yml"),
17+
"Test and Verification" => readYaml("data/TestandVerification.yml")
1918
);
2019

2120
ksort($dimensions);

head.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@
4545

4646
<link href="print.css" rel="spiderweb.css" />
4747
<link href="print.css" rel="stylesheet" />
48+
49+
<meta name="keywords" content="DevSecOps, DevOps, security, hardening">
50+
<meta name="author" content="Timo Pagel">
4851
</head>
4952

5053
<?php
@@ -95,7 +98,7 @@ function getTable($dimensions) {
9598
foreach ( $subdimensions as $subdimension => $element ) {
9699
$tableContent .= "<tr>";
97100
$tableContent .= "<td>";
98-
$tableContent .= "$dimension";
101+
$tableContent .= "<img height='40px' src=\"assets/images/$dimension.png\"> $dimension";
99102
$tableContent .= "</td>";
100103

101104
$tableContent .= "<td>";

navi.php

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,13 @@
1010
//"usefulnessHardness.php" => "Heatmap",
1111
"md.php?file=README" => "About this project",
1212
);
13+
?>
14+
<ul class="nav nav-tabs">
1315

14-
echo "<ul class=\"nav nav-tabs\">";
16+
<a class="navbar-brand" href="https://dsomm.timo-pagel.de">
17+
<img height="100%" src="/assets/images/logo.png" alt="OWASP DevSecOps Maturity Model">
18+
</a>
19+
<?php
1520
foreach ($nav as $item => $value) {
1621
echo "<li ";
1722
//$item = preg_replace("/\?.*/", "", $item);

0 commit comments

Comments
 (0)