Index.html/index.php Not Found In Google Codelabs App Shell
I was interested on on Google's web app-Shell. I've downloaded it GitHub. But I found that there is no index.html/index.php file in the whole code. All I mainly found, is the licen
Solution 1:
Unfortunately the Google web app-Shell isn't designed to have an index.html
file. There is a views folder that has what you're looking for https://github.com/GoogleChromeLabs/application-shell/tree/master/server/views.
As we can see they're using handlebars for as a templating system. For example, if we look at https://github.com/GoogleChromeLabs/application-shell/blob/master/server/views/layouts/default.handlebars we can see that they have {{> open-page}}
and {{{body}}}
. If we look at handlebars documentation these partials are rendered into other views.
Essentially, there isn't a single index.html
we can point to, but we can reconstruct the app by exploring their views.
Post a Comment for "Index.html/index.php Not Found In Google Codelabs App Shell"