contentcraft/addon-scripts/1.js

16 lines
539 B
JavaScript
Raw Normal View History

2024-10-13 10:52:27 -05:00
const mainHTML = marked(`# Welcome to ContentCraft!
ContentCraft is similar to WordPress, except different.
You can do pretty much anything with it using the *"addon-scripts"* folder
(like this page here, and making other pages!)
We included a few basic libraries in the index.js for you, but feel free to
add more to your addons, such as quick.db if you need to spin up a database.
Have a great day.
From all of us at Sneed Group.`)
app.get('/', (req, res) => {
res.send(mainHTML);
});