We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0598e9c commit 1ce93f5Copy full SHA for 1ce93f5
src/components/5_templates/api.js
@@ -16,13 +16,17 @@ const apiPage = ({ pageContext }) => {
16
return (
17
<Layout title="API Documentation" subtitle="Linode API Documentation">
18
<SEO title="API Documentation" description="" />
19
+ <h1>
20
+ {(node["get"] && node["get"].tags) ||
21
+ (node["put"] && node["put"].tags) ||
22
+ (node["post"] && node["post"].tags)}
23
+ </h1>
24
{Object.keys(node).map(e => {
25
const mode = modes[e];
26
const n = node[mode];
27
28
mode !== undefined && (
29
<div key={e}>
- <h1>{n.tags}</h1>
30
<h2>{mode}</h2>
31
<p>{n.summary}</p>
32
</div>
0 commit comments