我是Django/edX的新手。我使用斯坦福edX主题(https://github.com/Stanford-Online/edx-theme)进行openedX全栈部署。我想改变出现在主页上的“斯坦福大学的免费课程,任何人,任何地方,任何时间”。我该怎么做呢?
发布于 2015-10-01 19:28:09
您需要的模板位于edx-platform/lms/templates/index.html中。
它使用mako模板,看起来像这样,
<h1>${_("Free courses from <strong>{university_name}</strong>").format(university_name="Stanford")}</h1>
<h2>${_("For anyone, anywhere, anytime")}</h2>https://stackoverflow.com/questions/32722880
复制相似问题