-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.html
42 lines (42 loc) · 1.6 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
---
custom_js: frontPage.js
---
<!DOCTYPE html>
<html lang="en" class="no-js">
{% include _global/head.html %}
<body>
<div id="front-page-container">
{% include _main/front_page_header.html %}
{% include _global/header.html nav_bar=site.data.adase.title_nav_bar %}
<div id="full-body-wrapper">
<article class="content-layout-front-page">
<section id="about-section">
<div class="centered-section">
{% capture included %}{% include _main/about.md %}{% endcapture %}{{included | markdownify}}
<section id="news-section">
{% include _main/news.html %}
</section>
</div>
</section>
<section id="research-section">
<div class="centered-section">
{% capture included %}{% include _main/research/research.md %}{% endcapture %}{{included | markdownify}}
</div>
</section>
<section id="industry-section">
<div class="centered-section">
{% capture included %}{% include _main/industry.md %}{% endcapture %}{{included | markdownify}}
</div>
</section>
<section id="contact-section">
<div class="centered-section">
{% capture included %}{% include _main/contact.md %}{% endcapture %}{{included | markdownify}}
</div>
</section>
</article>
</div>
{% include _global/footer.html %}
{% include _global/hemline.html %}
</div>
</body>
</html>