16 lines
No EOL
539 B
JavaScript
16 lines
No EOL
539 B
JavaScript
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);
|
|
}); |