0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-17 21:02:49 +00:00

Small tweak to AELF layout

Add icons and inclusion text for Old School Essentials
This commit is contained in:
David Bolack
2024-07-17 15:13:03 -05:00
parent 1b67c69f0f
commit 01b5a6a783
5 changed files with 92 additions and 14 deletions

View File

@@ -6,6 +6,7 @@ const FooterGen = require('./snippets/footer.gen.js');
const LicenseGenWotC = require('./snippets/licenseWotC.gen.js');
const LicenseGenGNU = require('./snippets/licenseGNU.gen.js');
const LicenseGen = require('./snippets/license.gen.js');
const LicenseGenAelf = require('./snippets/licenseAELF.js');
const dedent = require('dedent-tabs').default;
@@ -134,9 +135,13 @@ module.exports = [
},
{
groupName : 'License',
icon : 'fas fa-copyright',
view : 'text',
icon : 'fas fa-copyright',
view : 'text',
snippets : [
{
name : 'AELF',
gen : LicenseGenAelf.aelf10a
},
{
name : 'Creative Commons',
icon : 'fab fa-creative-commons',
@@ -275,6 +280,42 @@ module.exports = [
]
},
{
name : 'MIT License',
icon : 'fas fa-mit',
gen : LicenseGen.mit,
},
{
name : 'ORC Notice',
icon : 'fas fa-Paizo',
gen : LicenseGen.orc1,
},
{
name : 'Old School Essentials',
icon : 'fas fa-ose',
subsnippets : [
{
name : 'OSE Logo - Black',
icon : 'fas fab-ose',
gen : LicenseGen.oseBlack,
},
{
name : 'OSE Logo - White',
icon : 'fas fa-ose',
gen : LicenseGen.oseWhite,
},
{
name : 'OSE Legal Text',
icon : 'fas fa-alt',
gen : LicenseGen.oseNotice,
}
]
},
{
name : 'Wizards of the Coast',
icon : 'fab fa-wizards-of-the-coast',
@@ -294,18 +335,6 @@ module.exports = [
]
},
{
name : 'MIT License',
icon : 'fas fa-mit',
gen : LicenseGen.mit,
},
{
name : 'ORC Notice',
icon : 'fas fa-Paizo',
gen : LicenseGen.orc1,
},
]
},
{