0

我是 Django/edX 的新手。我正在使用 stanford edX 主题(https://github.com/Stanford-Online/edx-theme)进行openXX 全栈部署。我想更改主页上显示的“任何人、任何地点、任何时间的斯坦福免费课程”。我怎样才能做到这一点 ?

4

1 回答 1

0

您需要的模板位于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>
于 2015-10-01T11:28:09.287 回答