{authorImageURL && (
diff --git a/packages/docusaurus-theme-bootstrap/src/theme/BlogTagsListPage/index.js b/packages/docusaurus-theme-bootstrap/src/theme/BlogTagsListPage/index.js
index a196ddbd20..689a6bb47a 100644
--- a/packages/docusaurus-theme-bootstrap/src/theme/BlogTagsListPage/index.js
+++ b/packages/docusaurus-theme-bootstrap/src/theme/BlogTagsListPage/index.js
@@ -15,7 +15,7 @@ function BlogTagsListPage(props) {
+ className="btn btn-primary list-inline-item my-2">
{tags[tag].name}{' '}
{tags[tag].count}
@@ -26,7 +26,7 @@ function BlogTagsListPage(props) {
return (
);
}
diff --git a/packages/docusaurus-theme-bootstrap/src/theme/Footer/index.js b/packages/docusaurus-theme-bootstrap/src/theme/Footer/index.js
new file mode 100644
index 0000000000..41d9f0db8f
--- /dev/null
+++ b/packages/docusaurus-theme-bootstrap/src/theme/Footer/index.js
@@ -0,0 +1,75 @@
+/**
+ * Copyright (c) Facebook, Inc. and its affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+import React from 'react';
+import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
+import Link from '@docusaurus/Link';
+import useBaseUrl from '@docusaurus/useBaseUrl';
+
+function FooterLink({to, href, label, ...props}) {
+ const toUrl = useBaseUrl(to);
+
+ return (
+
+ {label}
+
+ );
+}
+
+function Footer() {
+ const context = useDocusaurusContext();
+ const {siteConfig = {}} = context;
+ const {themeConfig = {}} = siteConfig;
+ const {footer} = themeConfig;
+
+ const {links} = footer || {};
+
+ return (
+
+ );
+}
+
+export default Footer;
Tags
-- {renderAllTags()}
- {renderAllTags()}