Skip to content
Snippets Groups Projects
Commit 8310e0b3 authored by Jennifer Mankoff's avatar Jennifer Mankoff
Browse files

shrunk header materials

parent 0c34312b
No related branches found
No related tags found
2 merge requests!95Uaccess 23fa,!2Class Canvas Release
This commit is part of merge request !2. Comments created here will be created in the context of that merge request.
......@@ -22,33 +22,30 @@
<span>Last revised: {{ page.revised }}</span>
</div>
<div class="learning-goals">
<div id="android-goals">
<strong>Assigned</strong>:
<ul>
{% for day in page.assigned %}
<li>{{day}}</li>
{% endfor %}
</ul>
</div>
<div id="hci-goals"> <strong>Due</strong>:
<ul>
{% for day in page.due %}
<li>{{day}}</li>
{% endfor %}
</ul>
</div>
</div>
<div id="due dates">
{% if page.assigned.size > 1 %}
<strong>Assigned</strong>
<ul>
{% for day in page.assigned %}
<li>{{day}}</li>
{% endfor %}
</ul>
{% else %}
<strong>Assigned</strong>: {{page.assigned}}
{% endif %}
<br>
<div class="learning-goals">
<ul>
{% for goal in page.hci_goals %}
<li>{{goal}}</li>
{% endfor %}
</ul>
</div>
{% if page.due.size > 1 %}
&emsp; <strong>Due</strong>
<ul>
{% for day in page.due %}
<li>{{day}}</li>
{% endfor %}
</ul>
{% else %}
<strong>Due</strong>: {{page.assigned}}
{% endif %}
</div>
{{ content }}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment