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 @@ -12,21 +12,32 @@ const GetStarted = (props) => {
1212 < div className = "container" >
1313 < div className = "row" >
1414 < div className = "col-12" >
15- < h1 > Tutorials</ h1 >
16- < h2 > For starting up things</ h2 >
17- < p >
18- Guides on how to start up engine, scanner, persistence provider
19- and do scan jobs etc.. Perhaps with screencasts.
20- </ p >
15+ < h1 > Getting Started</ h1 >
16+ < h2 > User and developer oriented documentation</ h2 >
17+ < span >
18+ How To:
19+ < ul >
20+ < li >
21+ Start
22+ < ul >
23+ < li > Operator</ li >
24+ < li > Scanner</ li >
25+ < li > Persistence Provider</ li >
26+ </ ul >
27+ </ li >
28+ < li > Hooks</ li >
29+ < li > Contribute</ li >
30+ </ ul >
31+ </ span >
2132 </ div >
2233 </ div >
2334 </ div >
2435 </ div >
2536
2637 < div className = "container pb-2 pb-md-3" >
2738 < div className = "row justify-content-center" >
28- { tutorials . map ( tutorial => (
29- < div className = "feature" >
39+ { tutorials . map ( ( tutorial , index ) => (
40+ < div key = { index } className = "feature" >
3041 < h1 > { tutorial . node . frontmatter . title } </ h1 >
3142 </ div >
3243 ) ) }
@@ -39,7 +50,7 @@ const GetStarted = (props) => {
3950export const query = graphql `
4051 query ServicesQuery {
4152 allMarkdownRemark(
42- filter: { fileAbsolutePath: { regex: "/getStarted /" } }
53+ filter: { fileAbsolutePath: { regex: "/docs /" } }
4354 sort: { fields: [frontmatter___title], order: DESC }
4455 ) {
4556 edges {
@@ -48,6 +59,7 @@ export const query = graphql`
4859 frontmatter {
4960 title
5061 path
62+ category
5163 }
5264 }
5365 }
Original file line number Diff line number Diff line change 11.footer-strip {
22 background : $secureCodeBlue ;
3- padding-top : 20px ;
4- padding-bottom : 20px ;
3+ display : flex ;
4+ flex-direction : column ;
5+ justify-content : center ;
6+ height : 70px ;
57 .container {
68 width : inherit ;
79 max-width : 4060px ;
8- margin-left : 20px ;
9- margin-right : 20px ;
10+ margin : auto 20px ;
1011 }
1112}
1213.footer {
Original file line number Diff line number Diff line change 33 background-image : url (' ../images/documentation.png' );
44 background-repeat : no-repeat ;
55 background-size : 100% ;
6- background-position : 49 px -50 px ;
6+ background-position : right bottom ;
77 @include media-breakpoint-up (sm) {
88 background-size : 90% ;
9- background-position : 620% 70px ;
109 }
1110 @include media-breakpoint-up (md) {
1211 background-size : 85% ;
13- background-position : 360% 0px ;
1412 }
1513 @include media-breakpoint-up (lg) {
1614 background-size : 60% ;
17- background-position : 110% 0px ;
1815 }
1916}
You can’t perform that action at this time.
0 commit comments