-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
147 lines (125 loc) · 3.49 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
---
layout: default
title: Home
---
<div class="row" id="luiti_luigi_logos">
<span>
<img src="https://raw.githubusercontent.com/Luiti/luiti.github.io/master/images/luiti/luiti_rectangle_logo.png" alt="Luiti" height="99px" width="132px">
</span>
<span class="text">=</span>
<span>
<img src="https://raw.githubusercontent.com/spotify/luigi/master/doc/luigi.png" alt="Luigi" height="90px" width="120px">
</span>
<span class="text"> + Time.</span>
</div>
<h3 class="logo_description">{{ site.description }}</h3>
<hr>
<div id="luiti_features" comment="TODO need improve ...">
<div class="row">
<div class="col-md-6">
<h2>Well Code Structure</h2>
<a class="image-popup-vertical-fit" href="/images/intro/Well code structure.png">
<img src="/images/intro/Well code structure.png" alt="Well code structure" height="200px" width="240px">
</a>
</div>
<div class="col-md-6">
<h2>Simple Concepts</h2>
<a class="image-popup-vertical-fit" href="/images/intro/Simple concept.png">
<img src="/images/intro/Simple concept.png" alt="Simple concept" height="200px" width="240px">
</a>
</div>
</div>
<div class="row">
<div class="col-md-6">
<h2>Visualize Tasks</h2>
<a class="image-popup-vertical-fit" href="//raw.githubusercontent.com/luiti/luiti/master/screenshots/luiti_webui_list.png">
<img src="//raw.githubusercontent.com/luiti/luiti/master/screenshots/luiti_webui_list.png" alt="Luiti WebUI List" rel="facebox">
</a>
</div>
<div class="col-md-6 hadoop_support">
<h2>Hadoop Support</h2>
<ol>
<li>
<a href="https://github.com/spotify/luigi/blob/master/luigi/contrib/hadoop.py">
MapReduce Streaming with Python
</a>
</li>
<li>
<a href="https://github.com/spotify/luigi/blob/master/luigi/contrib/hive.py">
Hive
</a>
</li>
<li>
<a href="https://github.com/spotify/luigi/blob/master/luigi/contrib/">
and more ...
</a>
</li>
</ol>
</div>
</div>
</div>
<hr>
<h1 class="get_started">
<a class="btn btn-default btn-lg" href="/document_guide.html" style="color: #56BB00;">Get Started</a>
</h1>
<style>
div#luiti_luigi_logos {
margin-left: 10%;
}
div#luiti_luigi_logos span {
float: left;
font-size: 60px;
font-weight: bold;
margin-top: 30px;
}
div#luiti_luigi_logos span.text {
margin-left: 20px;
margin-right: 20px;
color: #56BB00;
}
div.content.container p {
}
h3.logo_description {
text-align: left;
margin-top: 0rem;
margin-bottom: 1rem;
color: #56BB00;
}
#luiti_features a img {
margin: auto;
}
#luiti_features h2 {
text-align: center;
color: #56BB00;
}
#luiti_features .hadoop_support ol li {
font-size: 20px;
color: #56BB00;
}
#luiti_features .hadoop_support ol li a {
color: #56BB00;
}
a:focus { /* No outline from bootstrap. */
outline: none;
}
h1.get_started {
text-align: center;
}
h1.get_started a {
color: #56BB00;
}
</style>
<link rel="stylesheet" href="{{ "/bower_components/magnific-popup/dist/magnific-popup.css" | prepend: site.baseurl }}">
<script src="{{ "/bower_components/magnific-popup/dist/jquery.magnific-popup.min.js" | prepend: site.baseurl }}" type="text/javascript"></script>
<script>
$(document).ready(function() {
$('a.image-popup-vertical-fit').magnificPopup({
type: 'image',
closeOnContentClick: true,
mainClass: 'mfp-img-mobile',
image: {
verticalFit: true
}
});
});
</script>