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 4294cc9 commit f39c635Copy full SHA for f39c635
website/docusaurus.config.ts
@@ -64,7 +64,10 @@ const config: Config = {
64
}
65
66
},
67
- blog: {},
+ blog: {
68
+ blogSidebarTitle: 'All posts',
69
+ blogSidebarCount: 'ALL'
70
+ },
71
theme: {
72
customCss: [
73
'./src/css/custom.css',
website/static/js/carbon.js
@@ -1,6 +1,14 @@
1
(function () {
2
function attachAd() {
3
var wrapper = document.getElementById('sidebar-ads');
4
+ var blogSidebar = document.querySelector('[class*="BlogSidebar"]');
5
+
6
+ if (!wrapper && blogSidebar) {
7
+ wrapper = document.createElement('div');
8
+ wrapper.id = 'sidebar-ads';
9
+ blogSidebar.appendChild(wrapper);
10
+ }
11
12
if (wrapper) {
13
var el = document.createElement('script');
14
el.setAttribute('type', 'text/javascript');
0 commit comments