This allows an overridding template from a theme to inherit from the same corresponding standard template. This is useful when you only want to override one or more named blocks, but otherwise make no modifications to the standard template.
9 lines
344 B
HTML
9 lines
344 B
HTML
<%page expression_filter="h"/>
|
|
|
|
# Include template which does not exist in the theme.
|
|
<%include file="/courseware/error-message.html" />
|
|
# Include template which is overriden in the theme.
|
|
<%include file="/courseware/info.html" />
|
|
# Include custom template which only exists in the theme.
|
|
<%include file="/courseware/test-theme-custom.html" />
|