-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtpl.header.php
38 lines (34 loc) · 1.16 KB
/
tpl.header.php
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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title><?= $_title ? "$_title | " : '' ?>Jira</title>
<link rel="icon" type="image/png" href="/favicon-128.png" sizes="128x128" />
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#333" />
<link rel="stylesheet" href="<?= html_asset('style.css') ?>" />
<script src="rjs-custom.js"></script>
</head>
<body>
<div class="ver-loader"></div>
<div class="hor-loader"></div>
<?if ($user): ?>
<p class="top-menu">
<a href="index.php">< index</a> |
<a href="new.php">+Issue</a> |
<a href="auth.php">You (<?= $user->jira_user_short ?>)</a> |
<a href="filters.php">Filters</a> |
<a href="accounts.php">Accounts</a> |
<a href="variables.php">Vars</a>
<?if ($user->has_tempo):?>
| <a href="tempo.php">Tempo</a>
<?endif?>
<?if ($user->config('agile_view_id')):?>
| <a href="sprint.php">Sprint</a>
| <a href="agile.php">Agile</a>
<?endif?>
| <a href="logout.php">Log out</a>
</p>
<? endif ?>