-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·119 lines (100 loc) · 4.19 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
---
layout: null
title: Jekyll Theme - Home Page - Massively
description: Every great website starts with a great homepage. The homepage tells your viewers what your site is all about and gives your viewers a place to come back to.
sitemap:
priority: 1.0
lastmod: 2017-11-02
changefreq: weekly
---
<!DOCTYPE HTML>
<!--
Massively by HTML5 UP
html5up.net | @ajlkn
Jekyll integration by somiibo.com
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
{% include head.html %}
</head>
<body class="is-loading">
<!-- Wrapper -->
<div id="wrapper" class="fade-in">
<!-- Intro -->
<div id="intro">
<h1>{{site.title}}</h1>
<h2>The Jekyll Theme Version</h2>
<p>Massively is an HTML5 website theme designed by <a href="https://twitter.com/ajlkn">@ajlkn</a> for <a href="https://html5up.net">HTML5 UP</a><br />
and released for free under the <a href="https://html5up.net/license">Creative Commons license</a>. Jekyll integration by <a href="https://somiibo.com">Somiibo</a></p>
<ul class="actions">
<li><a href="#header" class="button icon solo fa-arrow-down scrolly">Continue</a></li>
</ul>
</div>
<!-- Header -->
<header id="header">
<a href="{{ "/" | absolute_url }}" class="logo">{{site.title}}</a>
</header>
<!-- Nav -->
<nav id="nav">
{% include nav.html %}
</nav>
<!-- Main -->
<div id="main">
<!-- Featured Post -->
<article class="post featured">
<header class="major">
<h2><a href="#">Massively is a versatile Jekyll theme</a></h2>
<p>With only a few edits, you can have a stunningly beautiful website <br />
nearly out of the box. Of course... you can always take it further <br />
and make it something even more amazing!</p>
</header>
<a href="#" class="image main"><img src="{{ "/images/pic01.jpg" | absolute_url }}" alt="" /></a>
<p>Regardless of your website's function, the homepage is what brings the user in.
If it's anything short of intriguing, captivating, or just plain cool, you're out of luck and you might deter some visitors.</p>
<p>Your homepage must clearly describe what your site is about.
Having engaging content will in this manner enable you to offer and it will make your customers more inclined to purchase from you. Content is a way to position your organization in the correct place for your clients to discover you.
</p>
<p>
In this manner, content in itself is a standout amongst the best promoting apparatuses in your whole advertising toolbox! Rather than making your content around your promoting technique, it's limitlessly more productive to fabricate your showcasing around your content.
</p>
</article>
<!-- Posts -->
<section class="posts">
{% for post in site.posts limit:3 %}
{% assign mod3 = forloop.index | modulo: 3 %}
<article>
<header>
<span class="date">{{ post.date | date_to_string }}</span>
<h2><a href="{{ post.url | absolute_url }}">{{ post.title }}</a></h2>
</header>
<a href="{{ post.url | absolute_url }}" class="image fit"><img src="{{ post.image | absolute_url }}" alt="" /></a>
<p>{{ post.excerpt }}</p>
<ul class="actions">
<li><a href="{{ post.url | absolute_url }}" class="button">Full Story</a></li>
</ul>
</article>
{% if mod3 == 0 %}
<article>
<header>
<h2><a href="#">Sponsored</a></h2>
</header>
</article>
{% endif %}
{% endfor %}
</section>
<!-- Footer -->
<footer>
<ul class="actions">
<li><a href="{{ "/blog/" | absolute_url }}" class="button">Our Blog</a></li>
</ul>
</footer>
</div>
<!-- Footer -->
{% include foot.html %}
</div>
<!-- Scripts -->
{% include scripts-main.html %}
{% include tracking.html %}
</body>
</html>