Custom Theme Documentation
See original GitHub issueIs there a resource anywhere that describes exactly how to modify or extend the theme? I’d simply like to make some slight modifications to the existing core theme. I’d like to change the way that the challenge tiles are displayed in the challenges page, but it’s all dynamically generated by Javascript, and I can’t find any documentation on the workflow for modifying that. I see assets/js/pages/challenges.js
which I assume is somehow related to static/js/pages/challenges.dev.js
which again is somehow related to static/js/pages/challenges.min.js
, but I have no clue how one is generated from the other.
Trying to move challenges.dev.js
to challenges.min.js
or challenges.js
to challenges.min.js
simply breaks the challenges page, which to me means that it’s not actually just a minified javascript file. What is the workflow for modifying these pages?
Issue Analytics
- State:
- Created 3 years ago
- Reactions:1
- Comments:10
Top GitHub Comments
Running
npm run build
after making a change to one of theassets/js
files recreates the minified versions (given dependencies are installed withnpm install
). Anyway, I’d also appreciate further documentation.Any update on this? We’d really love to make some custom themes but it’s pretty hard to do so without proper documentation - or are there just no theme docs to force more people to pay for them?