15 lines
433 B
JavaScript
15 lines
433 B
JavaScript
import {PageGeneratorRedirectBase} from "./generate-pages-page-generator.js";
|
|
|
|
class _PageGenerator5etools extends PageGeneratorRedirectBase {
|
|
_page = "5etools.html";
|
|
|
|
_pageDescription = "A suite of browser-based tools for 5th Edition Dungeons & Dragons players and Dungeon Masters.";
|
|
|
|
_redirectHref = "index.html";
|
|
_redirectMessage = "the homepage";
|
|
}
|
|
|
|
export const PAGE_GENERATORS_REDIRECT = [
|
|
new _PageGenerator5etools(),
|
|
];
|