forked from DHRI-Curriculum/website-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcurriculum.html
58 lines (48 loc) · 1.86 KB
/
curriculum.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
---
title: Curriculum
layout: default
---
<section id="content" class="container">
<div class="row">
<div class="col-lg-12 mx-auto text-center">
<h2 class="text-primary text-center">
Sessions
</h2>
<hr style="margin-bottom: 2rem" class="hr hr-primary" />
</div>
</div>
<div class="row">
<div class="col-md-10">
<p>Below is a preliminary list of technical workshops that will be offered during the GC Digital Humanities Research Institute. Workshops build on each other such that successive workshops use skills developed in earlier ones. All participants attend workshops on core skills, then choose which skills they wish to develop further through advanced workshops. Workshop descriptions are subject to small changes before June.</p>
</div>
</div>
<div class="col-md-6 curriculum-box-offset offset-md-3">
<table class="table table-striped" id="top">
{% for course in site.courses %}
<tr>
<td>{{ course.name }}</td>
<td><a href="#{{ course.link-reference }}">details</a></td>
<td><a href="{{ course.url }}" target="_blank">repo</a></td>
</tr>
{% endfor %}
</table>
</div>
{% for course in site.courses %}
<div class="row">
<div class="col-md-8 offset-md-2">
<div class="card" id="{{ course.link-reference }}">
<div class="card-block">
<div class="btn-group btn-group-sm pull-right" role="group" aria-label="{{ course.name }}">
<a href="{{ course.url }}" class="btn btn-primary"><i class="fa fa-github"></i></a>
<a href="#content" class="btn btn-primary"><i class="fa fa-chevron-up"></i></a>
</div>
<h4 class="card-title"><a href="{{ course.link-reference }}">{{ course.name }}</a></h4>
<p class="card-text">
{{ course.description }}
</p>
</div>
</div>
</div>
</div>
{% endfor %}
</section>