🏷️ Adds new data types for iconography, and documents

This commit is contained in:
Alicia Sykes
2021-06-21 19:30:17 +01:00
parent 75fc677ff9
commit 4b3d20f43f
3 changed files with 25 additions and 2 deletions

View File

@@ -69,6 +69,18 @@
"pattern": "^[a-z0-9]{10}$",
"description": "API key for font-awesome"
},
"faviconApi": {
"enum": [
"local",
"faviconkit",
"google",
"clearbit",
"webmasterapi",
"allesedv"
],
"default": "faviconkit",
"description": "Which service to use to resolve favicons. Set to local to do this locally instead"
},
"layout": {
"enum": [
"horizontal",
@@ -263,7 +275,7 @@
"icon": {
"type": "string",
"nullable": true,
"description": "An icon, either as a font-awesome identifier, local or remote URL, or auto-fetched favicon"
"description": "An icon, either as a font-awesome identifier, local or remote URL, or the word favicon or generative"
},
"url": {
"type": "string",

View File

@@ -13,6 +13,7 @@ module.exports = {
layout: 'auto',
theme: 'default',
fontAwesomeKey: '0821c65656',
faviconApi: 'faviconkit',
builtInThemes: [
'callisto',
'thebe',
@@ -81,4 +82,13 @@ module.exports = {
metaTagData: [
{ name: 'description', content: 'A simple static homepage for you\'re server' },
],
faviconApiEndpoints: {
mcapi: 'https://eu.mc-api.net/v3/server/favicon/$URL',
clearbit: 'https://logo.clearbit.com/$URL',
faviconkit: 'https://api.faviconkit.com/$URL/64',
// favicongrabber: 'https://favicongrabber.com//api/grab/$URL',
google: 'https://www.google.com/s2/favicons?sz=128&domain_url=$URL',
allesedv: 'https://f1.allesedv.com/128/$URL',
webmasterapi: 'https://api.webmasterapi.com/v1/favicon/yEwx0ZFs0CSPshHq/$URL',
},
};