blob: 210f4701081fb81450b52db6fa0c6ff164c0835c (
plain)
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
|
<?php use Fisharebest\Webtrees\DebugBar; ?>
<?php use Fisharebest\Webtrees\I18N; ?>
<?php use Fisharebest\Webtrees\View; ?>
<!DOCTYPE html>
<html <?= I18N::htmlAttributes() ?>>
<?= $theme_head ?>
<?= $theme_body_header ?>
<?= $content ?>
<?= $theme_footer_container ?>
<script>
// Global constants
var WT_MODULES_DIR = <?= json_encode(WT_MODULES_DIR) ?>;
var WT_GEDCOM = <?= json_encode($tree ? $tree->getName() : '') ?>;
var textDirection = <?= json_encode(I18N::direction()) ?>;
var WT_LOCALE = <?= json_encode(WT_LOCALE) ?>;
</script>
<script src="<?= e(WT_ASSETS_URL . 'js/vendor.js') ?>"></script>
<script src="<?= e(WT_ASSETS_URL . 'js/webtrees.js') ?>"></script>
<?= View::stack('javascript') ?>
<?= $theme_footer_javascript ?>
<?= DebugBar::renderHead() ?>
<?= DebugBar::render() ?>
</body>
</html>
|