-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
40 lines (33 loc) · 986 Bytes
/
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
---
layout: default
title: Home
description: Welcome to Tumble Network
---
<div class="slider">
<ul class="slides">
{% for slide in site.carousel %}
<li>
<img src="{{ slide.image }}"> <!-- random image -->
<div class="caption {{ slide.align | default: "center"}}-align {{ slide.color }}">
<h3>{{ slide.title }}</h3>
<h5 class="">{{ slide.subtitle }}</h5>
{% if slide.button %}
<a class="waves-effect waves-light btn {{ slide.button.color }}" href="{{ slide.button.href }}">{{ slide.button.text }}</a>
{% endif %}
</div>
</li>
{% endfor %}
</ul>
</div>
<div class="container"> <h2>Services</h2>
<div class="row ">
{% for service in site.data.services limit: 8 %}
{% include service-loop.html %}
{% endfor %}
</div>
<h2>Recent Posts</h2>
<div class="row">
{% for post in site.data.blog.posts limit: 8 %}
{% include post-loop.html %}
{% endfor %}
</div></div>