-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathdefault.html
More file actions
87 lines (70 loc) · 3.1 KB
/
default.html
File metadata and controls
87 lines (70 loc) · 3.1 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<!-- Copyright Vespa.ai. All rights reserved. -->
<html lang="en">
{% include htmlhead.html theme="light" %}
<body class="denali-theme-vespa-light subpage">
{% include navbar.html logo="logo.svg" class="vespa-light" %}
<div class="container-full container-overflow is-marginless is-gutterless denali-theme-vespa-light">
<!-- use nowrap here to keep the content column next to sidebar -->
<div class="row" style="flex-wrap: nowrap;">
<div class="col xs-hide sm-hide md-col-4-12 lg-col-3-12 xl-col-3-12">
{% include sidebar.html %}
<!-- Dummy: With the .tabs fixed position in style.scss,
put this dummy div in this column to take space. -->
<div style="min-width: 305px; width: 305px;"></div>
</div>
<div class="col md-col-8-12 lg-col-6-12 xl-col-7-12">
<div class="row">
{%- for applies_to in page.applies_to %}
{% include chip-{{ applies_to }}.html %}
{%- endfor %}
</div>
{% unless page.skipheading %}
<div class="row m-t-20 m-b-20 m-l-20">
<div class="col">
<h1>{{ page.title | escape }}</h1>
</div>
<div class="col-2-12" style="display: flex; gap: 12px; align-items: center; justify-content: flex-end;">
{%- if page.data.generate_markdown != false -%}
{%- assign last_char = page.url | slice: -1 -%}
{%- if last_char == '/' -%}
{%- assign markdown_url = page.url | append: 'index.html.md' -%}
{%- else -%}
{%- assign markdown_url = page.url | append: '.md' -%}
{%- endif -%}
<a href="{{ markdown_url | relative_url }}" class="view-as-markdown-button icon-only"
title="View as Markdown" aria-label="View page source as Markdown" data-proofer-ignore>
{% include assets/images/commonmark-logo.svg %}
</a>
{%- endif -%}
<a href="{{site.repository_url}}/blob/master/{{page.path}}" class="d-icon is-small d-pencil"
data-proofer-ignore></a> <!-- https://denali.design/icons alternative d-file-edit ToDo: color-->
</div>
</div>
{% endunless %}
<div class="m-l-20 m-r-20 content-overflow" style="min-height: 88vh;">
{{ content }}
</div>
<!-- Begin Footer
================================================== -->
<footer class="footer">
<div class="row">
<div class="m-20 content-overflow" style="font-size: 0.8em;">
Copyright © {{ site.time | date: "%Y" }} {{ site.name }} -
<a href="#" onclick="Osano.cm.showDrawer('osano-cm-dom-info-dialog-open')">Cookie Preferences</a>
</div>
</div>
</footer>
<!-- End Footer
================================================== -->
</div>
<div class="col xs-hide sm-hide md-hide lg-col-3-12 xl-col-2-12">
{% include toc.html %}
</div>
</div>
</div>
{% include js.html %}
<script src="/js/pre_copy.js"></script>
<script src="/js/header_links.js"></script>
</body>
</html>