-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·101 lines (88 loc) · 3.18 KB
/
index.html
File metadata and controls
executable file
·101 lines (88 loc) · 3.18 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
---
layout: default
section_id: home
---
<div class="full" id="generic">
<div class="row">
<div class="large-12 columns">
<div class="flex-spacing">
<div>
<h2>Pioneering Computational Humanities</h2>
<p>The Digital Innovation Group pushes the boundaries of computational analysis in the humanities by developing and deploying innovative research software and analytic methods.</p>
<a href="{{site.url}}/projects/index.html"><button class="secondary-btn">View our projects<i class="fa fa-chevron-right"></i></button></a>
</div>
<img class="hero" width="700px" src="/images/Hero image.png"/>
</div>
</div>
</div>
</div>
<div class='full'>
<div class='row'>
<div>
{% include section-header.html title="Our mission" %}
<div class="grid-mission">
{% for item in site.data.mission %}
<div>
<img id="mission-image" src="{{ item.image-light }}">
<p style="margin: 20px 15px;">{{ item.description }}</p>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
<div class='full'>
<div class='row'>
<div class='large-12 columns'>
{% include section-header.html title="Our projects" %}
<div class="grid-projects">
{% for item in site.data.mini-projects %}
{% if forloop.index > 4 %}
{% break %}
{% endif %}
<a href="{{ item.url }}" target="_blank">
<div class="project-tile">
<img id="{{ item.id }}" src="{{ item.image-color }}">
</div>
</a>
{% endfor %}
</div>
<a href="{{site.url}}/projects/index.html"><button class="secondary-btn" style="float: right;">View all projects<i class="fa fa-chevron-right"></i></button></a>
</div>
</div>
</div>
<div class='full'>
<div class='row'>
<div class='large-12 columns'>
{% include section-header.html title="Our recent posts" %}
<div class="grid-posts">
{% for post in site.posts %}
{% if forloop.index > 3 %}
{% break %}
{% endif %}
<div class="post-card">
<div class="post-image">
<img src="{{ post.images }}">
</div>
<h3 class="post-title">{{ post.title }}</h3>
<h5 style="color: var(--secondary-headings); height: 25px;">{{ post.date | date: "%B %d, %Y"}}</h5>
<p style="color: var(--paragraphs); height: 175px;">{{ post.excerpt }}</p>
<a href="{{ post.url }}" class="read-more">Read more<i class="fa fa-chevron-right"></i></a>
</div>
{% endfor %}
</div>
<a href="{{site.url}}/blog/"><button class="secondary-btn" style="float: right;">View all posts<i class="fa fa-chevron-right"></i></button></a>
</div>
</div>
</div>
<script>
//# sourceURL=theme.js
var Theme = localStorage.getItem('theme') ? localStorage.getItem('theme') : null;
if (Theme === 'dark') {
$(".hero").attr('src',"/images/Hero image – 1.png");
$("#mission-image").attr('src',"/images/Icon awesome-tools.png");
{% for item in site.data.mini-projects %}
$("#{{ item.id }}").attr('src',"{{ item.image-white }}")
{% endfor %}
}
</script>