forked from slsa-framework/slsa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspecifications.html
37 lines (34 loc) · 1.19 KB
/
specifications.html
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
<!DOCTYPE html>
<html lang="{{ page.lang | default: site.lang | default: "en" }}">
{%- include head.html -%}
<body
x-data="{navOpen: false}"
x-init="$refs.body.style.setProperty('--scrollbar-width', `${window.innerWidth - document.body.offsetWidth}px`)"
x-ref="body"
>
{%- include aside.html -%}
<div class="site-main">
{%- include header.html -%}
<main class="site-clamp" aria-label="Content">
<header class="content-header">
<h1 class="mb-16">{{ page.title }}</h1>
</header>
<div class="site-content has-toc">
<aside class="table-of-contents flex flex-col">
{% include versions-dropdown.html %}
{% include status.html %}
<div class="flex-auto rounded-lg p-4 border border-gray-400 overflow-auto">
<p class="header-small uppercase">On this page</p>
{% include toc.html html=content h_min=1 h_max=3 %}
</div>
</aside>
<div class="content markdown">
<p>{{ page.hero_text | markdownify }}</p>
{{ content }}
</div>
</div>
</main>
{%- include footer.html -%}
</div>
</body>
</html>