1

I want to add some HTML5 to my edx course. Where should I put my .html, .css and .js files so that they can work locally

Aksh
  • 654
  • 6
  • 13
apurv
  • 83
  • 1
  • 2
  • 5

2 Answers2

1

If you add a file to /edx/app/edxapp/edx-platform/lms/static, for example pouac.js, it will be available at http://youlmsdomainname.com/static/pouac.js once you re-collect the static assets. This is how you collect assets:

paver update_assets lms
Régis B.
  • 10,092
  • 6
  • 54
  • 90
0

All the .html, .js, and .css files are located in static folder for each cms & lms directory. Now you want to add some html5 to your edx course so you have to edit htmls of lms & particular courseware htmls.

Please keep in mind that some blocks are made of js in htmls. So you have to look into some js files that are rendered later as html.

If you want to add new pages to lms or studio you have to follow below documentation. doc link

Hope this will help or shoot any query in comment.

Jay Modi
  • 3,161
  • 4
  • 35
  • 52