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 72b68c0 commit 218bce9Copy full SHA for 218bce9
src/theme/BlogLayout/index.js
@@ -102,7 +102,17 @@ export default function BlogLayout(props) {
102
</main>
103
{toc && <div className="col col--2">{toc}</div>}
104
</div>
105
+ <div className="mt-4 text-lg leading-8 container">
106
+ <a
107
+ href={isChangelog ? '/changelog/archive' : '/blog/archive'}
108
+ target="_blank"
109
+ className="text-sm"
110
+ >
111
+ {isChangelog ? 'Changelog archive' : 'Blog archive'}
112
+ </a>
113
+ </div>
114
115
+
116
<Footer />
117
</Layout>
118
);
0 commit comments