-
Notifications
You must be signed in to change notification settings - Fork 20
/
index.html
140 lines (134 loc) · 4.27 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
---
layout: base
title: "Homepage"
description: "Your description goes here"
---
<header>
{% include topbar.html %}
<h1 class="show-for-sr">Homepage</h1>
</header>
<main>
<!-- Hero -->
<section id="hero" class="grid-x grid-padding-y align-center-middle">
<div class="cell medium-5 text-center">
<h2 class="show-for-sr">Our vision</h2>
{% assign slogan = site.data.pages.index.hero.slogan | markdownify %}
<div class="h3" style="margin-bottom: 50px;">
<div id="slogan">
{{ slogan }}
</div>
</div>
<!--
<a class="primary large button"
href="https://eliademy.com/opensciencemooc">
{{ site.data.pages.index.hero.button }}
</a>
-->
</div>
</section>
<!-- END Hero -->
<!-- How Can You Help? -->
<div class="grid-container">
<section class="grid-x grid-padding-x grid-padding-y">
<div class="cell small-12 text-center">
<h2>{{ site.data.pages.index.help.title }}</h2>
</div>
{% for block in site.data.pages.index.help.blocks %}
<section class="cell medium-4 text-center">
{% if block.icon and block.icon != "" %}
{% include {{ block.icon }} %}
{% endif %}
<h3>{{ block.title }}</h3>
{{ block.text | markdownify }}
</section>
{% endfor %}
</section>
</div>
<!-- END How Can You Help? -->
<!-- Discover our Courses -->
<section class="grid-container">
<div class="grid-x grid-padding-x grid-padding-y">
<div class="cell small-12 text-center">
<h2>{{ site.data.pages.index.discover.title }}</h2>
</div>
</div>
<div class="grid-x grid-padding-x grid-padding-y medium-up-3 no-bullet">
{% assign modules = site.modules | sort: "order" %}
{% for module in modules %}
<div class="cell text-center">
<article class="card" >
<div class="card-section">
{% if module.icon %}
{% include {{ module.icon }} %}
{% endif %}
</div>
<div class="card-section">
<h3 class="h4">{{ module.title }}</h3>
<ul class="menu align-center">
<li>
<a class="button primary hollow"
href="{{ module.url | relative_url }}">
Learn More
</a>
</li>
{% if module.link %}
<li style="padding-left: 15px;">
<a class="button primary" href="{{ module.link }}">
Enroll Now
</a>
</li>
{% endif %}
</ul>
</div>
</article>
</div>
{% endfor %}
</div>
</section>
<!-- END Discover our Courses -->
<!-- What's New? -->
<div class="grid-container">
<section class="grid-x grid-padding-x grid-padding-y">
<div class="cell small-12 text-center">
<h2>{{ site.data.pages.index.news.title }}</h2>
</div>
{% for post in site.posts limit:3 %}
<div class="cell small-12 medium-4">
<article>
<header>
{% include helpers/file_exists.html
filename=post.image.url %}
{% if filename_exists == "true" %}
<img src="{{ post.image.url | relative_url }}"
alt="{{ post.image.description }}">
{% else %}
<img src="{{ "/assets/img/osm/osm-news-default.png" |
relative_url }}"
alt="{{ post.image.description }}">
{% endif %}
<h3 class="h4">
<a href="{{ post.url | relative_url }}">{{ post.title }}</a>
</h3>
<div class="grid-x grid-padding-x">
<address class="cell shrink"
style="border-right: solid 1px #ccc;">
{{ post.author }}
</address>
<time class="cell auto">
{{ post.date | date: "%B %d, %Y" }}
</time>
</div>
</header>
<a href="{{ post.url | relative_url }}">
Read more
<span class="show-for-sr">
about {{ post.title }} article.
</span>
</a>
</article>
</div>
{% endfor %}
</section>
</div>
<!-- END What's New? -->
</main>