forked from OSDG-IIITH/OSDG-IIITH.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
32 lines (23 loc) · 844 Bytes
/
home.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
---
layout: base
---
<header class="masthead">
<div class="container h-100">
<div class="row h-100 align-items-center justify-content-center text-center">
<div class="col-lg-8 align-self-end">
<p class="text-white-75 font-weight-light mb-5">{{ page.header.text }}</p>
</div>
<div class="col-lg-10 align-self-baseline">
<h1 class="text-white font-weight-bold">{{ page.header.title }}</h1>
<hr class="divider my-4">
{% if page.header.action %}
<a class="btn btn-primary btn-xl js-scroll-trigger" href="{{ page.header.action.url }}">{{ page.header.action.label }}</a>
{% endif %}
</div>
</div>
</div>
</header>
{% for section in page.sections %}
{% include {{ section.type }} section=section site=site page=page %}
{% endfor %}
{{ content }}