-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (27 loc) · 1.16 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
---
title: Home
layout: default
---
<main role="main" class="flex-fill">
<section id="title" class="section-title bg-transparent">
<div class="jumbotron jumbotron-fluid bg-transparent flex-grow-1 d-flex flex-column justify-content-center">
<div class="container title-main">
<img src="/assets/img/favicon/favicon-310.png" class="viriditas-logo align-baseline" alt="">
<h1 class="display-2 centered text-center">{{ site.title | default: site.github.owner_name }}</h1>
<hr class="shadow">
<div class="text-white h5 text-center">
<em>{{ site.description | default: site.github.project_tagline }}</em>
</div>
</div>
</div>
<footer class="text-center">
<a href="#about" role="button" class="btn btn-lg btn-link scroll-smooth more-arrow text-light">
<i class="fa fa-angle-double-down fa-5x" aria-hidden="true"></i>
</a>
</footer>
</section>
{%- assign sections = site.sections | sort: "menu_order" -%}
{% for section in sections -%}
{% include section_layouts/{{ section.section_layout }}.html title=section.title content=section.content side=section.side %}
{%- endfor %}
</main>