-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.html
executable file
·41 lines (34 loc) · 1.64 KB
/
header.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
<!DOCTYPE html>
<html xmlns='http://www.w3.org/1999/xhtml'>
<!--
/**
* pje - PHP jquery UI editor
*
* @see https://github.com/coyote333666/pje The pje GitHub project
*
* @author Vincent Fortier <[email protected]>
* @copyright 2023 Vincent Fortier
* @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License
* @note This program is distributed in the hope that it will be useful - WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE.
*/
-->
<head>
<title><?php echo(APP_TITLE); ?></title>
<meta http-equiv='Content-Type' content='text/html;charset=utf-8'>
<!-- jQuery -->
<script class='include' type='text/javascript' src='<?php echo(FILE_JQUERY); ?>'></script>
<!-- jQuery UI -->
<script class='include' type='text/javascript' src='<?php echo(FILE_JQUERY_UI_JS); ?>'></script>
<link rel="stylesheet" href='<?php echo(FILE_JQUERY_UI_CSS); ?>'>
<!-- TableExport.js -->
<link href='<?php echo(FILE_TABLEXPORT_CSS); ?>' rel="stylesheet">
<script type="text/javascript" src='<?php echo(FILE_XLSX_JS); ?>' charset="utf-8"></script>
<script type="text/javascript" src='<?php echo(FILE_FILESAVER_JS); ?>' charset="utf-8"></script>
<script type="text/javascript" src='<?php echo(FILE_TABLEXPORT_JS); ?>' charset="utf-8"></script>
<!-- bootstrap.js -->
<link href='<?php echo(FILE_BOOTSTRAP_CSS); ?>' rel="stylesheet">
<script type="text/javascript" src='<?php echo(FILE_BOOTSTRAP_JS); ?>' charset="utf-8"></script>
<!-- font-awesome.css -->
<link href='<?php echo(FILE_FONT_AWESOME_CSS); ?>' rel="stylesheet">