-
-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathbase.html
More file actions
62 lines (54 loc) · 2.63 KB
/
base.html
File metadata and controls
62 lines (54 loc) · 2.63 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{% from 'content.html' import content with context %}
<!DOCTYPE html>
<html lang="en">
<head>
<title>${title}</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta charset="UTF-8"/>
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:site" content="@CycloneDX_Spec"/>
<meta name="twitter:title" content="${title}"/>
<meta name="twitter:image" content="https://cyclonedx.org/images/CycloneDX-Social-Card.png"/>
<meta name="twitter:description" content="${title}"/>
<meta name="description" content="${title}"/>
<meta property="og:description" content="${title}"/>
<meta property="og:title" content="${title}"/>
<meta property="og:locale" content="en_US"/>
<meta property="og:type" content="website" />
<meta property="og:image" content="https://cyclonedx.org/images/CycloneDX-Social-Card.png" />
<link href="/favicon.ico" rel="shortcut icon" type="image/ico" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" crossorigin="anonymous" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css" />
<link rel="stylesheet" type="text/css" href="schema_doc.css">
<script src="schema_doc.min.js"></script>
<!-- mega menu CSS is injected by inject-header.sh -->
</head>
<body class="blue" data-bs-spy="scroll" data-bs-target=".js-scrollspy" onload="anchorOnLoad();" id="root">
<!-- MEGA_MENU_HEADER -->
<div class="container-fluid" style="margin-top:110px; margin-bottom:3rem">
<h1>${title}</h1>
{%- if title -%}
<h1>{{ title }}</h1>
{%- endif -%}
{%- if config.expand_buttons -%}
<div class="text-end">
<button class="btn btn-primary" type="button" data-bs-toggle="collapse" data-bs-target=".collapse:not(.show)" aria-expanded="false">Expand all</button>
<button class="btn btn-primary" type="button" data-bs-toggle="collapse" data-bs-target=".collapse.show" aria-expanded="false">Collapse all</button>
</div>
{%- endif -%}
{{ content(schema) }}
<!--
<footer class="site-footer__copyright fixed-bottom">
<div class="container">
<div class="row">
<div class="col-sm-12">
© OWASP Foundation - CycloneDX is a <a href="https://owasp.org/cyclonedx">OWASP Flagship Project</a>
</div>
</div>
</div>
</footer>
-->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/js/bootstrap.bundle.min.js" crossorigin="anonymous"></script>
<!-- mega menu JS is injected by inject-header.sh -->
</body>
</html>