-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·111 lines (101 loc) · 4.4 KB
/
index.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
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
101
102
103
104
105
106
107
108
109
110
111
---
layout: default
title:
---
<!-- introduction -->
<section>
<div class="section-content mdl-grid">
<div class="mdl-cell mdl-cell--7-col">
<h1 class="mdl-typography--display-13 mdl-typography--font-light">{{ site.title }} —<br> Jekyll template</h1>
<h2 class="mdl-typography--headline smaller-headline">{{site.description}}</h2>
<div class="action">
{% assign grouped = site.docs | group_by: 'category' %}
{% for group in grouped %}
{% assign items = group.items | sort: 'order' %}
<a class="mdl-button mdl-js-button mdl-button--raised mdl-button--colored rounded" href="{{ site.baseurl }}{{ items.first.url }}">{{ group.name }}</a>
{% endfor %}
</div>
</div>
<div class="mdl-cell mdl-cell--5-col mdl-cell--hide-phone" style="position: relative">
<img class="desktop-only intro-image" src="{{ site.baseurl }}/assets/images/digital-typewriter.png" alt="Digital Typewriter">
</div>
</div>
</section>
<!-- Features -->
<section>
<div class="section-content">
<h2 class="mdl-typography--display-1 mdl-typography--text-center">Features</h2>
<div class="mdl-grid">
{% for feature in site.features limit: 6 %}
{% include feature.html %}
{% endfor %}
</div>
</div>
</section>
<!-- 1st short description -->
<section>
<div class="section-content mdl-grid">
<div class="mdl-cell mdl-cell--5-col mdl-card__media mdl-cell--hide-phone">
<img class="desktop-only mdl-shadow--2dp image-left" src="{{ site.baseurl }}/assets/images/first.jpg" alt="Work with humanities data">
</div>
<div class="mdl-cell mdl-cell--7-col">
<h2 class="mdl-typography--display-1 mdl-typography--font-light">This can be a first title</h2>
<p class="mdl-typography--headline mdl-typography--font-light smaller-headline">
A short introduction should be placed here.
</p>
</div>
</div>
</section>
<hr class="section-content">
<!-- 2nd short description -->
<section>
<div class="section-content mdl-grid">
<div class="mdl-cell mdl-cell--7-col">
<h2 class="mdl-typography--display-1 mdl-typography--font-light">Second title</h2>
<p class="mdl-typography--headline mdl-typography--font-light smaller-headline">
Placeholder for a second introduction.
</p>
</div>
<div class="mdl-cell mdl-cell--5-col mdl-card__media mdl-cell--hide-phone">
<img class="desktop-only mdl-shadow--2dp image-right" src="{{ site.baseurl }}/assets/images/second.jpg" alt="Find your data">
</div>
</div>
</section>
<!-- Contribute -->
<section class="darker">
<div class="section-content mdl-typography--text-center">
<h2 class="mdl-typography--display-1">Contribute</h2>
<!-- <p style="text-align: center;">Test Knora today or improve the software</p> -->
<a class="mdl-button mdl-js-button mdl-button--raised rounded mdl-typography--display-1" href="{{site.git.url}}">
Code on GitHub
</a>
</div>
</section>
<!-- News: release notes -->
<section>
<div class="section-content">
<h2 class="mdl-typography--display-1 mdl-typography--text-center">News</h2>
<div class="mdl-grid">
{% for post in site.posts limit: 3 %}
<div class="mdl-cell mdl-cell--4-col mdl-card simple-border no-hidden-overflow">
<div class="mdl-card__title">
<p class="mdl-card__subtitle-text">{{ post.date | date: '%B %d, %Y' }}</p>
</div>
<div class="mdl-card__title">
<h4 class="mdl-card__title-text">{{ post.title }}</h4>
</div>
<div class="mdl-card__supporting-text">
<p class="mdl-typography--headline mdl-typography--font-light smaller-headline">
{{ post.content }}
</p>
</div>
<div class="mdl-card__actions mdl-typography--text-center">
{% if post.link %}
<a href={{ post.link }} target="_blank">→ Release note on GitHub</a>
{% endif %}
</div>
</div>
{% endfor %}
</div>
</div>
</section>