-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
81 lines (81 loc) · 2.52 KB
/
about.php
File metadata and controls
81 lines (81 loc) · 2.52 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?php
require_once("core/php/functions/commonFunctions.php");
$baseUrl = "core/";
if(file_exists('local/layout.php'))
{
$baseUrl = "local/";
//there is custom information, use this
require_once('local/layout.php');
$baseUrl .= $currentSelectedTheme."/";
}
require_once($baseUrl.'conf/config.php');
require_once('core/conf/config.php');
require_once('core/php/configStatic.php');
require_once('core/php/update/updateCheck.php');
require_once('core/php/loadVars.php'); ?>
<!doctype html>
<head>
<title>Git Status | About</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="<?php echo $baseUrl ?>template/theme.css?v=<?php echo $configStatic['version']; ?>">
<link rel="icon" type="image/png" href="core/img/favicon.png" />
<script src="core/js/jquery.js"></script>
<script src="core/js/visibility.core.js"></script>
<script src="core/js/visibility.fallback.js"></script>
<script src="core/js/visibility.js"></script>
<script src="core/js/visibility.timers.js"></script>
</head>
<body>
<?php require_once('core/php/templateFiles/sidebar.php'); ?>
<?php require_once('core/php/templateFiles/header.php'); ?>
<div id="main" style="overflow: auto; overflow-y: auto; right: 0;" >
<div class="firstBoxDev">
<div class="innerFirstDevBox" >
<div class="devBoxTitle">
<b>About</b>
</div>
<div class="devBoxContent">
gitStatus
<br><br>
A Simple Git Status Monitor
<br><br>
Version <?php echo $configStatic['version']; ?>
</div>
</div>
</div>
<div class="firstBoxDev">
<div class="innerFirstDevBox" >
<div class="devBoxTitle">
<b>Github:</b>
</div>
<div class="devBoxContent">
<a style="color: black;" href="https://github.com/mreishman/gitStatus">Github link</a>
<br><br>
<a style="color: black;" href="https://github.com/mreishman/gitStatus/issues">Issues</a>
</div>
</div>
</div>
<div class="firstBoxDev">
<div class="innerFirstDevBox" style=" width: 600px;" >
<div class="devBoxTitle">
<b>Changelog</b>
</div>
<div class="devBoxContent">
<?php readfile('core/html/changelog.html') ?>
</div>
</div>
</div>
<div>
<script type="text/javascript">
function calcuateWidth()
{
var left = "0px";
if(document.getElementById("sidebar").style.width == '100px')
{
left = "103px";
}
document.getElementById("main").style.left = left;
}
</script>
<script src="core/js/allPages.js?v=<?php echo $configStatic['version']; ?>"></script>
</body>