Skip to content

Commit 0ddac8e

Browse files
committed
made tag detail and author details dynamic in author and tag post pages and other minor fixes and improvements
1 parent 0b9fcd5 commit 0ddac8e

File tree

13 files changed

+604
-461
lines changed

13 files changed

+604
-461
lines changed

gatsby-wordpress-theme-libre/gatsby-browser.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ let injected = false;
5656
let injectedTwitterScript = false;
5757

5858
export const onRouteUpdate = ({ location: { hash } }) => {
59+
5960
if (hash) {
6061
window.setTimeout(scrollTo(hash), 10);
6162
}

gatsby-wordpress-theme-libre/gatsby-config.js

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,13 @@ module.exports = (themeOptions) => {
3030
name: `pages`,
3131
},
3232
},
33+
{
34+
resolve: `gatsby-source-filesystem`,
35+
options: {
36+
path: path.join(__dirname, `static`),
37+
name: `static`,
38+
},
39+
},
3340
// Setup for optimized images.
3441
// See https://www.gatsbyjs.org/packages/gatsby-image/
3542
{
@@ -88,8 +95,8 @@ module.exports = (themeOptions) => {
8895
`/404`,
8996
`/404.html`,
9097
`/offline-plugin-app-shell-fallback`,
91-
'/offline',
92-
'/offline.html'
98+
"/offline",
99+
"/offline.html",
93100
],
94101
createLinkInHead: true,
95102
addUncaughtPages: true,

gatsby-wordpress-theme-libre/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@draftbox-co/gatsby-wordpress-theme-libre",
3-
"version": "1.0.43-alpha-1",
3+
"version": "1.0.43",
44
"license": "MIT",
55
"resolutions": {
66
"sharp": "0.23.4"

0 commit comments

Comments
 (0)