-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
105 lines (103 loc) · 3.31 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
---
title: Calkit
layout: base
---
<div class="section no-pad-bot" id="index-banner">
<div class="container">
<br /><br />
<div class="row center">
<img width="350px" src="/static/img/calkit-no-bg.png" />
</div>
<div class="row center">
<h5 class="header col s12 light">
A lightweight framework for reproducible research
</h5>
<p>
Everything in one place: Code, data, environments, figures,
publications, and more.
</p>
</div>
<div class="row center">
<a
class="btn-large waves-effect waves-light calkit-green mr15"
id="download-button"
href="https://github.com/calkit/calkit?tab=readme-ov-file#installation"
target="_blank"
>🚀 Get started</a
>
<a
class="btn-large waves-effect waves-light calkit-green"
id="download-button"
href="https://docs.calkit.org"
target="_blank"
>📄 Read the docs</a
>
</div>
<br />
</div>
</div>
<div class="container">
<div class="section">
<!-- Icon Section-->
<div class="row">
<div class="col s12 m4">
<div class="icon-block">
<h2 class="center light-blue-text">
<i class="material-icons">flash_on</i>
</h2>
<h5 class="center">Increase productivity</h5>
<p class="light">
When your workflows are reproducible, you will avoid getting lost
and make fewer mistakes. Iterations on artifacts like figures and
publications become much faster.
</p>
</div>
</div>
<div class="col s12 m4">
<div class="icon-block">
<h2 class="center light-blue-text">
<i class="material-icons">group</i>
</h2>
<h5 class="center">Maximize impact</h5>
<p class="light">
By putting all of your research inputs and outputs into a single
project repository with a single pipeline, others will be able to
reproduce your work, make predictions with it, and adapt it to
create new knowledge, use it to develop new technology, etc.
</p>
</div>
</div>
<div class="col s12 m4">
<div class="icon-block">
<h2 class="center light-blue-text">
<i class="material-icons">settings</i>
</h2>
<h5 class="center">Lock in without lock-in</h5>
<p class="light">
Calkit is open source and built upon other open source technology
such as Git, Docker, DVC, and more.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- <div class="container" id="blog_roll">
<style>
#red_header {
text-align: center;
box-sizing: border-box;
padding: 20px;
}
</style>
<h2 class="white-text light-blue lighten-1 z-depth-2" id="red_header">Blog posts</h2>
<div class="row">{% for post in site.posts %}
<div class="col s12 m6">
<div class="card white">
<div class="card-content"><span class="card-title">{{post.title}}</span>
<p>{{post.excerpt}}</p>
</div>
<div class="card-action"><a href="{{post.url}}">Read More</a></div>
</div>
</div>{% endfor %}</div>
</div> -->