Skip to content

Commit 8676293

Browse files
css etc
1 parent 8eaf64b commit 8676293

File tree

7 files changed

+26
-590
lines changed

7 files changed

+26
-590
lines changed

README.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@
33
```
44
python gedcom2html_test.py
55
```
6-
or
7-
```
8-
python gedcom2html.py myfile.ged
9-
```
106
## An example says it all. So have a look at:
117
* [Dutch Royal Family](//picnicprojects.com/gedcom2html/dutchroyalfamily/)
128
## Features
@@ -18,16 +14,12 @@ python gedcom2html.py myfile.ged
1814
- [famousfamilytrees](http://famousfamilytrees.blogspot.com/?m=1) for the demo gedcom files
1915
## To do
2016
- beautify CSS / colors
21-
- add title
22-
- home button
23-
- link to index.html with main person
2417
- command line options
2518
* -private
2619
* none
2720
* hide dates of people alive
2821
* hide all people alive
2922
* -output-dir
3023
* -language
31-
* -set_main_person
3224
- list of people in right column
3325
- improve age calculation

example.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
from gedcom2html import Gedcom2html
2+
3+
# g = Gedcom2html()
4+
# g.options.file_path = "demo/dutchroyalfamily.ged"
5+
# g.options.title = "Family tree of the Dutch Royal Family"
6+
# g.options.home_person_id = "I1208"
7+
# g.write_html()
8+
9+
10+
g = Gedcom2html()
11+
g.options.file_path = "demo/americanpresidents.ged"
12+
g.options.title = "American Presidents"
13+
g.write_html()

fanchart.js

Lines changed: 0 additions & 247 deletions
This file was deleted.

gedcom2html.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ body {
99
text-align:center;
1010
}
1111

12+
.page-header a{
13+
color:#bbb;
14+
}
15+
1216
ul li{
1317
list-style-type: none;
1418
}

0 commit comments

Comments
 (0)