-
Notifications
You must be signed in to change notification settings - Fork 10
/
family_template.html
30 lines (30 loc) · 1.24 KB
/
family_template.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="robots" content="noindex">
<title>Calendrier d'anniversaires & trombinoscope généalogique de la famille {{genealogy_name}}</title>
<meta name="author" content="Lucas Cimon [ chezsoi.org/lucas ]"/>
<link rel="stylesheet" href="bundle-{{genealogy_name}}.css">
</head>
<body ng-app="BirthdayCalendar">
<script type="text/javascript" src="bundle-{{genealogy_name}}.js"></script>
<h3 style="text-align:center">Les anniversaires de la famille {{genealogy_name}}</h3>
<div ng-if="options && events" class="calendarContainer">
<flex-calendar options="options" events="events"></flex-calendar>
</div>
<br>
<h3 style="text-align:center">Le trombino de la famille {{genealogy_name}}</h3>
<svg width="1000" height="1000" id="genealogic-tree"/>
<svg id="genealogic-miniature"/>
<script type="text/javascript">
birthday_calendar('{{genealogy_name}}_genealogy.json');
genealogic_d3.generate({
json_genealogy: '{{genealogy_name}}_genealogy.json',
path_to_miniature_imgs: 'miniatures_{{genealogy_name}}/',
miniature_photo_size: 200,
packing_generation_factor: 4.5
});
</script>
</body>
</html>