29 lines
506 B
Plaintext
29 lines
506 B
Plaintext
{% include "header" %}
|
|
<main class="np-main np-max-width np-page-container">
|
|
<div class="np-hidden-mobile" id="course-desktop">
|
|
{% include "course_desktop_view" %}
|
|
</div>
|
|
<div class="np-hidden-desktop" id="course-mobile">
|
|
{% include "course_mobile_view" %}
|
|
</div>
|
|
</main>
|
|
{% include "footer" %}
|
|
|
|
<style>
|
|
.np-card-container {
|
|
box-shadow:none;
|
|
}
|
|
|
|
.np-header {
|
|
border-bottom:1px solid #e5e9eb;
|
|
}
|
|
|
|
.np-footer {
|
|
border-top:1px solid #e5e9eb;
|
|
}
|
|
|
|
body {
|
|
background-color:white;
|
|
}
|
|
</style>
|