File tree Expand file tree Collapse file tree 1 file changed +15
-6
lines changed
src/components/5_templates Expand file tree Collapse file tree 1 file changed +15
-6
lines changed Original file line number Diff line number Diff line change @@ -33,12 +33,21 @@ const apiPage = ({ data }) => {
33
33
default : "default"
34
34
} ;
35
35
return (
36
- < Layout
37
- // title="API Documentation"
38
- // subtitle="Linode API Documentation"
39
- fullWidth
40
- >
41
- < SEO title = "Linode API Documentation" description = "Container Tools" />
36
+ < Layout fullWidth >
37
+ < SEO
38
+ title = {
39
+ "Linode API | " + ( n . get && n . get . tags ) ||
40
+ ( n . post && n . post . tags ) ||
41
+ ( n . put && n . put . tags ) ||
42
+ ( n . delete && n . delete . tags )
43
+ }
44
+ description = {
45
+ ( n . get && n . get . description ? n . get . description : "" ) +
46
+ ( n . post && n . post . description ? n . post . description : "" ) +
47
+ ( n . put && n . put . description ? n . put . description : "" ) +
48
+ ( n . delete && n . delete . description ? n . delete . description : "" )
49
+ }
50
+ />
42
51
< div className = "flex flex-wrap" >
43
52
< div className = "md:hidden search-header-wrapper" >
44
53
< SearchHeader />
You can’t perform that action at this time.
0 commit comments