@pitaj said in theme-quickstart: template created, is found (no 404) but not rendered.:
Without knowing what you changed, I can't tell you where you went wrong. Please answer all of the questions I ask.
There hasn't been much to share. See below.
Do you get any errors in the server logs or in your browser console when you attempt to access the page?
No errrors.
Yes, plugin quick start is where you want to look if you're adding new pages. https://github.com/NodeBB/nodebb-plugin-quickstart/blob/104b739ed8f8a82b36f92fa4b680238ebb1d8306/library.js#L19
That's what I did, add lines 19 to 25 from your link to my theme's init, change it to reflect the filename. Still only white page displayed.
It somehow seems to be working now. Switched themes forth and back, now it's working. 
At least partially so. The template gets rendered, the associated js is however not exec'd:
template/mynewtemplate.tpl:
<div class="well">
<p>This is a custom page. </p>
<p>Your uid is {uid}!</p>
<p id="last-p"></p>
</div>
lib/mynewtemplate.js:
'use strict';
define('mynewtemplate', function ()
var module = {};
module.init = function () {
$('#last-p').text('mynewtemplate.js loaded!');
};
return module;
});
The id 'last-p' is not exec'd.
Console errors:
GET /manifest.webmanifest 401 (Unauthorized)
manifest.webmanifest:1 Manifest: Line: 1, column: 1, Syntax error.
Obviously, I'm auth'd and cross-origin
is set to use-credentials
.
How can I improve on the documentation once this is working as expected?