-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (51 loc) · 2.62 KB
/
index.html
File metadata and controls
59 lines (51 loc) · 2.62 KB
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
---
title: About EditData
layout: landing
---
<section class="welcome">
<div class="container">
<h1 class="landing-title">Tools for collaborating on data.</h1>
<div class="block">
<h2>Send us your email & we'll send you updates</h2>
<p>Find out all the latest news about the EditData project:</p>
{% include newsletter.html %}
</div>
<div class="flatsheet-description block"><h2>EditData was previously named Flatsheet.</h2>We renamed the project to take focus away from the idea of spreadsheets, to expand the scope to editing data in a variety of ways.</div>
<div class="block">
<h2>How can I use EditData?</h2>
<br>
<h3>The app</h3>
<p>Use <a href="http://app.editdata.org" target="_blank">app.editdata.org</a> to edit CSV or JSON files from GitHub repos or your computer.</p>
<h3>The JavaScript modules</h3>
<p>Build your own data editor with the modules found at <a href="http://github.com/editdata" target="_blank">github.com/editdata</a>.</p>
</div>
<div class="block">
<h2>Recent posts:</h2>
<div class="posts">
{% for post in site.posts limit:3 %}
{% if post.published %}
<div class="post" id="{{ post.slug }}">
<h3 class="post-title"><a href="{{ post.url }}">{{ post.title }}</a> - <span class="post-date">{{ post.date | date: "%-d %B %Y" }}</span></h3>
</div>
{% endif %}
{% endfor %}
</div>
</div>
<div class="block">
<h2>Is this open source? Can I contribute?</h2>
<p>Yes. Always. Forever. Find the code at <a href="https://github.com/editdata" target="_blank">github.com/editdata</a></p>
<p>The modules that make up EditData will always be open source, so you'll be able to run your own instance of EditData.org or build your own app using the same componenets.</p>
<p>It would be great to hear about your potential use cases, ideas you have for projects that might use EditData in some way, or your interest in getting involved with EditData development.</p>
<h2>Contact & contribution info:</h2>
<ul>
<li><strong><a href="http://github.com/editdata">EditData on Github</a></strong></li>
<li><strong><a href="http://github.com/editdata/discuss/issues">Discuss the EditData project</a></strong></li>
<li><strong><a href="https://gitter.im/editdata/discuss">Chat on Gitter</a></strong></li>
<li><strong><a href="https://github.com/editdata/contributing">Contributing guidelines</a></strong></li>
</ul>
</div>
<div class="block">
{% include support.html %}
</div>
</div>
</section>