Skip to content

Latest commit

 

History

History
33 lines (29 loc) · 1.09 KB

File metadata and controls

33 lines (29 loc) · 1.09 KB
layout title permalink
page
Exams
/exams/
    {% assign all_events = site.events | where_exp:"item", "item.type == 'exam'" | sort: 'date' %} {% for asg in all_events reversed %}
  • {{ asg.description }}
        {% if asg.attachment %}
        &nbsp; <a title="Download attachments (zip)" href="{{ asg.attachment | prepend: site.baseurl }}">
        <i class="fas fa-file-archive"></i>
        </a>
        {% endif %}
    
        {% if asg.examdoc %}
        &nbsp; <a title="Exam" href="{{ asg.examdoc | prepend: site.baseurl }}">
        <i class="fas fa-file-pdf"></i></a>
        {% endif %}
    
        {% if asg.solution %}
        &nbsp; <a title="Solution" href="{{ asg.solution | prepend: site.baseurl }}">
        <i class="fas fa-file-pdf"></i>
        </a>
        {% endif %}
    
        </strong> 
      </li>
    

    {% endfor %}