diff --git a/_layouts/module.html b/_layouts/module.html index bce7515fbf1f4a115832df0c6565f97cfa12ec3f..c4632763b88d967e84a3b1359f11b7def2248453 100644 --- a/_layouts/module.html +++ b/_layouts/module.html @@ -1,5 +1,5 @@ <div class="module"> - <h3 class="module-header">{{ page.title }}</h3> + <h3 class="module-header"><strong class="module-week">{{ page.week }}</strong> {{ page.title }}</h3> {% if page.days %} <dl class="module-days"> {% for day in page.days %} diff --git a/_sass/custom/module.scss b/_sass/custom/module.scss index 4334d35abfe4f3a293d7da5b860f23dc37a53965..e6459f2c9295cd6491eb774f0b480dd9ed1d2832 100644 --- a/_sass/custom/module.scss +++ b/_sass/custom/module.scss @@ -10,6 +10,10 @@ } } +.module-week { + @extend .label, .text-grey-dk-100, .bg-grey-lt-200; +} + .module-date { @extend .card-header; }