15 lines
287 B
HTML
15 lines
287 B
HTML
<%inherit file="base.html" />
|
|
<%block name="title">Course Manager</%block>
|
|
<%include file="widgets/header.html"/>
|
|
|
|
<%block name="content">
|
|
<section class="main-container">
|
|
|
|
<%include file="widgets/navigation.html"/>
|
|
|
|
<section class="main-content">
|
|
</section>
|
|
|
|
</section>
|
|
</%block>
|