Artera Internal templates. Notes for the same.

This commit is contained in:
Norm Rasmussen
2023-06-01 16:54:12 -04:00
parent 04ab65043f
commit d48f951d6c
28 changed files with 1765 additions and 37 deletions

View File

@ -0,0 +1,18 @@
{% 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>
@media (min-width: 768px) {
.np-page-container {
margin: 0 auto 6.25rem;
}
}
</style>