@dunlix said in Best NodeBB plugins?:
@anodetobb in the NodeBB settings (ACP) There is an option somewhere to open new links in new tabs. Maybe in settings>posts but not sure. On a desktop you can just middle click.
Thanks very much! 👍🏻
at the very basic level, what languages do you need to know to create a nodebb theme?
html, css and a little bit of javascript
though you can get away with just css and html if you just wanna modify an existent theme
inside files, there are many html comments like <!-- BEGIN children --> but where is the reference for those? any instructions for .tpl files?
@charles this is the templating engine nodebb uses
there is some documentation about it in the wiki https://nodebb-francais.readthedocs.org/projects/nodebb/en/latest/themes/templates.html#templating-basics
and on its github page
https://github.com/psychobunny/templates.js/blob/master/README.md#template-syntax
@charles templates.js is not too complex. all you need to know is loops, conditionals and import.
Couple of things not in the documentation...
i'm sure many beginners would love to start with your knowledge