@rmdes/indiekit-endpoint-homepage 1.0.10 → 1.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +8 -16
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -245,6 +245,14 @@ export default class HomepageEndpoint {
|
|
|
245
245
|
defaultConfig: {},
|
|
246
246
|
configSchema: {},
|
|
247
247
|
},
|
|
248
|
+
{
|
|
249
|
+
id: "webmentions",
|
|
250
|
+
label: "Webmentions",
|
|
251
|
+
description: "Recent inbound/outbound webmentions",
|
|
252
|
+
icon: "message-circle",
|
|
253
|
+
defaultConfig: {},
|
|
254
|
+
configSchema: {},
|
|
255
|
+
},
|
|
248
256
|
{
|
|
249
257
|
id: "custom-html",
|
|
250
258
|
label: "Custom Content",
|
|
@@ -275,14 +283,6 @@ export default class HomepageEndpoint {
|
|
|
275
283
|
defaultConfig: {},
|
|
276
284
|
configSchema: {},
|
|
277
285
|
},
|
|
278
|
-
{
|
|
279
|
-
id: "post-navigation",
|
|
280
|
-
label: "Post Navigation",
|
|
281
|
-
description: "Previous/next post links",
|
|
282
|
-
icon: "arrow-left-right",
|
|
283
|
-
defaultConfig: {},
|
|
284
|
-
configSchema: {},
|
|
285
|
-
},
|
|
286
286
|
{
|
|
287
287
|
id: "toc",
|
|
288
288
|
label: "Table of Contents",
|
|
@@ -299,14 +299,6 @@ export default class HomepageEndpoint {
|
|
|
299
299
|
defaultConfig: {},
|
|
300
300
|
configSchema: {},
|
|
301
301
|
},
|
|
302
|
-
{
|
|
303
|
-
id: "webmentions",
|
|
304
|
-
label: "Webmentions",
|
|
305
|
-
description: "Likes, reposts, and replies",
|
|
306
|
-
icon: "message-circle",
|
|
307
|
-
defaultConfig: {},
|
|
308
|
-
configSchema: {},
|
|
309
|
-
},
|
|
310
302
|
{
|
|
311
303
|
id: "share",
|
|
312
304
|
label: "Share",
|
package/package.json
CHANGED