It depends entirely on your needs and wants.
If you want to create a personal page with a blog and stuff, you could use WonderCMS.
This requires only 5 files to be uploaded to a server, and presto! You've got yourself a functional webpage!
Search found 41 matches
- Mon Apr 25, 2022 4:43 pm
- Forum: Community chat
- Topic: Backend for website
- Replies: 2
- Views: 274
- Sat Feb 12, 2022 1:13 am
- Forum: Support
- Topic: [SOLVED] Cloaking Email Addresses
- Replies: 22
- Views: 3868
Re: [SOLVED] Cloaking Email Addresses
Small addition which i thought might be interesting to know.. What we are using here is called an IIFE. An IIFE (Immediately Invoked Function Expression) is a JavaScript function that runs as soon as it is defined. (function() { return; })(); This makes it so we don't have to define a function to ru...
- Mon Feb 07, 2022 8:41 pm
- Forum: Support
- Topic: [SOLVED] Cloaking Email Addresses
- Replies: 22
- Views: 3868
Re: [SOLVED] Cloaking Email Addresses
I would also probably go with a separate script file instead of the inline javascript. Give all the A elements a class name, eg "mail" and then use something like this: // shortcut to use "d" as document (defined in the last line) (d => { // select all instances of A with classna...
- Mon Feb 07, 2022 8:21 pm
- Forum: Plugins
- Topic: [PLUGIN ADDED] Monaco Editor
- Replies: 27
- Views: 8296
Re: [PLUGIN ADDED] Monaco Editor
Yes! Even tried to give some feedback!
Also I did get your background story, just messing about hehe
Also I did get your background story, just messing about hehe
- Mon Feb 07, 2022 3:58 pm
- Forum: Support
- Topic: [SOLVED] Cloaking Email Addresses
- Replies: 22
- Views: 3868
Re: [SOLVED] Cloaking Email Addresses
Quick pro hack: open your webpage in incognito mode, this way you can be logged in, and view as visitor! Also JS has (only since recently) BLA.replaceAll('DOT', '.') Both original and replace value can be strings here. Otherwise you can do this instead BLA.replace(/DOT/g, '.') The G behind DOT RegEx...
- Mon Feb 07, 2022 3:47 pm
- Forum: Plugins
- Topic: [PLUGIN ADDED] Monaco Editor
- Replies: 27
- Views: 8296
- Mon Jan 24, 2022 11:26 pm
- Forum: Plugins
- Topic: [PLUGIN ADDED] Monaco Editor
- Replies: 27
- Views: 8296
Re: [PLUGIN ADDED] Monaco Editor
Trouble is I haven't learnt anything new since around then and you may recall the story about old dogs and new tricks. I can tell you there's some truth in it! ;) haha true story :D But, within my limits, I'll do what I can to assist. Awesome, seems like you are likely more skilled to do this than ...
- Mon Jan 24, 2022 3:00 pm
- Forum: Plugins
- Topic: [PLUGIN ADDED] Monaco Editor
- Replies: 27
- Views: 8296
Re: [PLUGIN ADDED] Monaco Editor
I guess it's something 'we' could work on.
Atm I've got a sore shoulder, so I'm not crawling behind my pc.
If JS is new for you it can be quite a lot to process, i guess.
Let's get back on this!
Atm I've got a sore shoulder, so I'm not crawling behind my pc.
If JS is new for you it can be quite a lot to process, i guess.
Let's get back on this!
- Fri Jan 21, 2022 8:06 pm
- Forum: Plugins
- Topic: [PLUGIN ADDED] Monaco Editor
- Replies: 27
- Views: 8296
Re: [PLUGIN ADDED] Monaco Editor
There are a few things that can be added to the configuration of the editor. Taken from Monaco playground: wordWrap: 'wordWrapColumn', wordWrapColumn: 40, // Set this to false to not auto word wrap minified files wordWrapMinified: true, // try "same", "indent" or "none"...
- Fri Jan 21, 2022 7:08 am
- Forum: Plugins
- Topic: [PLUGIN ADDED] Monaco Editor
- Replies: 27
- Views: 8296
Re: [PLUGIN ADDED] Monaco Editor
Joo! The Monaco Editor is not meant to be used in conjunction with a different one :P I'm not quite sure what to do with your problem here :o The newtab and email client opening on the "mailto:" links is default behaviour in Chrome (like most browsers) Maybe we can go back to "default...