Skip to content

Deploy to production #4068

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Apr 2, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions jekyll-assets/_includes/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@
<link rel="stylesheet" href="{{ site.baseurl }}/css/asciidoctor-tabs.css?ver={{ site.time | date: '%s' }}">
<link rel="stylesheet" href="{{ site.baseurl }}/css/syntax-highlighting.css?ver={{ site.time | date: '%s' }}">
<link rel="stylesheet" href="{{ site.baseurl }}/css/tocbot.css?ver={{ site.time | date: '%s' }}">
<script type="text/javascript" src="{{ site.baseurl }}/scripts/tocbot.js?ver={{ site.time | date: '%s' }}"></script>
<script type="text/javascript" src="{{ site.baseurl }}/scripts/toc.js?ver={{ site.time | date: '%s' }}"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-V8TFXM3BKJ"></script>
<script>
window.dataLayer = window.dataLayer || [];
Expand Down
2 changes: 1 addition & 1 deletion jekyll-assets/_layouts/boxes.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
{% include head.html %}
</head>
<body onload="makeToc()">
<body>
{% include header.html %}

<div class="toptitle">
Expand Down
16 changes: 10 additions & 6 deletions jekyll-assets/_layouts/docs.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
{% include head.html %}
</head>
<body onload="makeToc()">
<body>
<input type="checkbox" id="mobile-toggle" />
{% include header.html %}
<div id="docs-content">
Expand Down Expand Up @@ -162,11 +162,7 @@ <h1>{{ page.sub_title | markdownify | remove: '<p>' | remove: '</p>'}}</h1>
<div id="on-this-page">
<div id="on-this-page-inner">
<h5>On this page</h5>
<div id="toc">
{{ page.document | tocify_asciidoc: 3 }}
</div>
<div id="tocbot">
</div>
<div id="tocbot" class="js-toc"></div>
</div>
</div>
</div>
Expand All @@ -178,6 +174,14 @@ <h5>On this page</h5>
<script async type="text/javascript" src="{{ site.baseurl }}/scripts/asciidoctor-tabs.js?ver={{ site.time | date: '%s' }}"></script>
<script async type="text/javascript" src="{{ site.baseurl }}/scripts/clipboard.min.js?ver={{ site.time | date: '%s' }}"></script>
<script async type="text/javascript" src="{{ site.baseurl }}/scripts/copy-to-clipboard.js?ver={{ site.time | date: '%s' }}"></script>
<script type="text/javascript" src="{{ site.baseurl }}/scripts/tocbot.min.js?ver={{ site.time | date: '%s' }}"></script>
<script>
tocbot.init({
contentSelector: '#content',
headingSelector: 'h1, h2, h3, h4',
includeHtml: true
});
</script>

{% include search.html %}
</div>
Expand Down
9 changes: 2 additions & 7 deletions jekyll-assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -368,11 +368,6 @@ input:checked + li span label div .toc-item::before {
margin-bottom: 6px;
}

/* hide the non-tocbot non-interactive toctree from view -- just needed to generate tocbot version */
#on-this-page-inner #toc {
display: none;
}

.sectlevel1 {
flex-grow: 0;
margin-right: 10px;
Expand Down Expand Up @@ -547,11 +542,11 @@ nav#mobile-contents {
}

@media screen{
#tocbot > ul.toc-list{
#tocbot > ol.toc-list{
margin-bottom: 0.5em;
margin-left: 0.125em
}
#tocbot ul.sectlevel0, #tocbot a.toc-link.node-name--H1 + ul {
#tocbot ul.sectlevel0, #tocbot a.toc-link.node-name--H1 + ol {
padding-left: 0;
}
#tocbot a.toc-link{
Expand Down
36 changes: 0 additions & 36 deletions jekyll-assets/scripts/toc.js

This file was deleted.

Loading