You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
427 B
16 lines
427 B
<?php
|
|
|
|
function getMenu($menu)
|
|
{
|
|
echo <<<EOF
|
|
<head>
|
|
<title>$menu</title>
|
|
<link rel="stylesheet" type="text/css" href="/static/css/bootstrap.min.css">
|
|
<script src="/static/js/popper.min.js"></script>
|
|
<script src="/static/js/jquery-3.4.1.min.js"></script>
|
|
<script src="/static/js/bootstrap.min.js"></script>
|
|
<script src="/static/js/Cookie.js"></script>
|
|
</head>
|
|
EOF;
|
|
}
|
|
|
|
|