- {fields.slug === '/installation/' && (
+ {displayDefaultLocaleWarning && (
+
+
+ ,
+ translationGuideLink:
+ }}
+ />
+
+ )}
+ {displayOutdatedWarning && (
+
+
+ ,
+ lastEnglishVersionLink: ,
+ translationGuideLink:
+ }}
+ />
+
+ )}
+ {slug === '/installation/' && (
@@ -77,6 +113,7 @@ export const pageQuery = graphql`
}
pageAttributes {
authors
+ based_on
}
}
locales: allLocale(filter: {language: {eq: $language}}) {
diff --git a/src/types/index.tsx b/src/types/index.tsx
index e426ab352..af1f01469 100644
--- a/src/types/index.tsx
+++ b/src/types/index.tsx
@@ -11,6 +11,7 @@ export interface AsciidocPage {
},
pageAttributes: {
authors: string;
+ based_on?: string;
}
}