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 5dacaca commit 6f2e97cCopy full SHA for 6f2e97c
index.js
@@ -102,7 +102,9 @@ const TWITTER_BODY = ('twitter' in config && 'body' in config.twitter)
102
{{{minutes_base_url}}}{{gDate}}/`;
103
104
// Mustache template - vars: gDate
105
-const WORDPRESS_TITLE = 'JSON-LD CG Meeting Minutes for {{gDate}}';
+const WORDPRESS_TITLE = ('wordpress' in config && 'title' in config.wordpress)
106
+ ? config.wordpress.title
107
+ : 'Meeting Minutes for {{gDate}}';
108
// Location of date-based minutes folders; MUST end in a forward slash
109
const MINUTES_BASE_URL = 'https://json-ld.github.io/minutes/'
110
0 commit comments