-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (75 loc) · 4.01 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Sun Family Tree Renderer - Open Source Product</title>
<link rel="stylesheet" type="text/css" href="./style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0;">
<meta name="description" content="Free open source Family Tree visualization in the shape of the Sun. Create your own web-based tree with a print version.">
<link rel="shortcut icon" type="image/png" href="./favicon.png">
</head>
<body>
<header>
<div id="Paralax">
<img src="./images/familytree.png" style="width:100%;">
</div>
<div class="container">
<div class="justify">
<div class="toLeft">
<span id="SunLogo">SunTree</span>
</div>
</div>
<h1>Custom designed Family Tree in the form of the Sun</h1>
<p class="Hello">
Open source renderer which produces web-based visualization <br>and
print version for up to A0 size.
</p>
<a class="button" href="//example.family--tree.org" onClick="ga('send', 'event', 'ExampleButtonFamilyTree', 'Click', 'MainPage')">See example</a>
</div>
</header>
<section class="white separate">
<div class="container">
<h2>Create your Family Tree in 3 steps</h2>
<div class="g1of3">
<h3><img src="./images/combine.svg" class="icons"/>Prepare the data</h3>
<p>There are 2 options to fill in the information about your family.</p>
<ul>
<li>Create a tree on <a href="//familyecho.com" target="_blank">familyecho.com</a>. It's fast and easy to use web service. Once finished, export the tree in CSV format.</li>
<li>The other option is to manually create CSV file. See how in <a href="https://github.com/aslushnikov/ftree" rel="nofollow" target="_blank">documentation</a>.</li>
</ul>
</div><div class="g1of3">
<h3><img src="./images/treeIcon.png" class="icons"/>Create the layout</h3>
<p>To visualize a data, you need to copy the source code.</p>
<ul>
<li>Fork our <a href="//github.com/aslushnikov/ftree" target="_blank" rel="nofollow">GitHub repository</a>.</li>
<li>Add the exported file from FamilyEcho and your configs.json to /src/assets/ (see more in documentation).</li>
<li>Open repository settings and publish it as a <a href="https://pages.github.com" target="_blank" rel="nofollow">GitHub Page</a>. You can even connect a custom domain name.</li>
</ul>
</div><div class="g1of3">
<h3><img src="./images/settings.svg" class="icons"/>Customize for your needs</h3>
<p>SunTree comes with multi-language support, print version, blocks for meta information and customizable layout. It also works well on the mobile phones.</p><p> Check out the <a href="//github.com/aslushnikov/ftree/blob/master/README.md" onClick="ga('send', 'event', 'DocumentationButton', 'Click', 'MainPage')" target="_blank">documentation</a> and feel free to reach out us if you have any questions.</p>
</div>
</div>
<div class="explorebutton">
<a class="button" href="//github.com/aslushnikov/ftree/blob/master/README.md" onClick="ga('send', 'event', 'ExploreButton', 'Click', 'MainPage')" target="_blank">Documentation</a>
</div>
<br>
<br>
</section>
<footer>
<div class="container justify">
<p id="Copyright" class="toLeft">Created by <a href="//sedrak.info" target="_blank" onClick="ga('send', 'event', 'SedrakCopyright', 'Click', 'MainPage')">Sedrak</a> and <a href="//aslushnikov.com" target="_blank" onClick="ga('send', 'event', 'AndreyCopyright', 'Click', 'MainPage')">Andrey</a>.</p>
</div>
</footer>
<!-- Google Analytics -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-24607980-8', 'auto');
ga('send', 'pageview');
</script>
<!-- Google Analytics -->
</body>
</html>