This repository was archived by the owner on Apr 21, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ // Currently docs use the same style as the integrations
Original file line number Diff line number Diff line change 11import React from 'react' ;
22import { graphql } from 'gatsby' ;
33import Layout from '../components/Layout' ;
4+ import Sidebar from '../components/Sidebar.js' ;
45
5- const docs = ( { data } ) => {
6- const { title } = data . markdownRemark . frontmatter ;
6+ const docs = ( { data, location } ) => {
77 const { html } = data . markdownRemark ;
88 return (
9- < Layout bodyClass = "doc" >
10- < div className = "strip strip-white strip-diagonal" >
11- < div className = "container pt-4 pt-md-10" >
12- < div className = "row justify-content-start" >
13- < div className = "col-12 col-md-8" >
14- < div className = "team" >
15- < h1 className = "title" > { title } </ h1 >
16- < div className = "content" dangerouslySetInnerHTML = { { __html : html } } />
17- </ div >
18- </ div >
9+ < Layout bodyClass = "integration" >
10+ < div className = "sidebar-wrapper" >
11+ < div id = "content" >
12+ < div className = "container-fluid" id = "integration-doc" >
13+ < div
14+ className = "content"
15+ dangerouslySetInnerHTML = { { __html : html } }
16+ />
1917 </ div >
2018 </ div >
2119 </ div >
You can’t perform that action at this time.
0 commit comments