mirror of
https://github.com/inspec/inspec
synced 2024-11-30 08:30:39 +00:00
c351d27334
Since Google Custom Search is EOL-ing, we are replacing it with Swiftype. This adds the necessary markup and JS to make that happen, as well as some CSS overrides to make it fit with the styling on the site. Signed-off-by: Maggie Walker <magwalk@gmail.com>
52 lines
2 KiB
Text
52 lines
2 KiB
Text
= wrap_layout :layout do
|
|
|
|
/! animated banner
|
|
header.child-h.blue-gradient.margin-top-offset
|
|
#particles-second
|
|
canvas.particles-js-canvas-el /
|
|
.purp-shade
|
|
.row.relative-top.searchbar
|
|
|
|
.column.columns
|
|
|
|
form.main-sidebar--search action="/docs/search/" method="get"
|
|
input.st-default-search-input type="text" placeholder="Search Documentation" name="q"
|
|
|
|
button.search.shadow action="/docs/search/" method="get"
|
|
img src="/images/community/search.svg"
|
|
|
|
|
|
.row.margin-both
|
|
|
|
column.columns.large-3.medium-3#sidebar
|
|
- if locals[:sidebar_layout] == 'docs'
|
|
ul.main-sidebar--links
|
|
- sidebar_data(sidebar_layout).each do |item|
|
|
li.main-sidebar--link
|
|
small = item.title
|
|
ul.main-sidebar--list.no-bullet
|
|
- item.links.each do |item_link|
|
|
li.main-sidebar--list--item--a class=link_classes(current_resource.url, item_link)
|
|
= link_to item_link.title, item_link.link
|
|
i.focus.strict-right ⪢
|
|
- if print_sub_links?(current_resource.url, item_link)
|
|
ul.main-sidebar--list--item--dropdown
|
|
- item_link.sub_links.each do |sub_link|
|
|
li.main-sidebar--list--item class=link_classes(current_resource.url, sub_link)
|
|
= link_to sub_link.title, sub_link.link
|
|
|
|
column.columns.large-9.medium-9
|
|
|
|
== yield
|
|
|
|
javascript:
|
|
// Swiftype JS code snippet
|
|
(function(w,d,t,u,n,s,e){w['SwiftypeObject']=n;w[n]=w[n]||function(){
|
|
(w[n].q=w[n].q||[]).push(arguments);};s=d.createElement(t);
|
|
e=d.getElementsByTagName(t)[0];s.async=1;s.src=u;e.parentNode.insertBefore(s,e);
|
|
})(window,document,'script','//s.swiftypecdn.com/install/v2/st.js','_st');
|
|
|
|
_st('install','xzyJV6P7pgscygGyyTm8','2.0.0');
|
|
// end Swiftype code snippet
|
|
|
|
document.getElementsByClassName("st-default-search-input")[0].focus();
|