-
Notifications
You must be signed in to change notification settings - Fork 8
/
support.php
77 lines (68 loc) · 2.39 KB
/
support.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
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
<?php
$t_sub_title = "Support";
include( "top.php" );
?>
<div class="row show-grid clear-both">
<div class="col-sm-12 col-md-12">
<h1>Community Support</h1>
<div class="col-sm-12 col-md-12 grey-box">
<div class="hero-block3">
<div class="row show-grid">
<div class="col-sm-12 col-md-12">
<div class="hero-content-3">
<h3>
MantisBT is free software. The community around MantisBT is full of nice people who want to help
others learn. Become part of the family, learn from others, and give something back when you can.
</h3>
</div>
</div>
</div>
</div>
</div>
<br><br>
<span class="lead">The following resources are provided by the MantisBT community free of charge:</span>
</div>
</div>
<br>
<div class="row show-grid">
<div class="col-md-11 col-md-offset-1">
<div class="note-stick stick pull-left">
<br>
<p>Admin and Developer</p>
<h1 class="small">Documentation</h1>
<br>
<a href="documentation.php" onclick="ga('send', 'event', 'Support', 'Go to Docs');" type="button" class="ex btn btn-group btn-default btn-inverse btn-block">
Go to Docs
</a>
</div>
<div class="note-stick stick pull-left">
<br>
<p>Ask questions at the</p>
<h1>Forums</h1>
<br>
<a href="<?php echo $g_forums_url; ?>" onclick="ga('send', 'event', 'Support', 'Go to forums');" type="button" class="ex btn btn-default btn-inverse btn-block">
Go to forums
</a>
</div>
<div class="note-stick stick pull-left">
<br>
<p>Report issues to our</p>
<h1>Bugtracker</h1>
<br>
<a href="<?php echo $g_bugs_url; ?>" onclick="ga('send', 'event', 'Support', 'Go to bug tracker');" type="button" class="ex btn btn-default btn-inverse btn-block">
Go to bug tracker
</a>
</div>
<div class="note-stick stick pull-left">
<br>
<p>Browse our</p>
<h1>Wiki</h1>
<br>
<a href="<?php echo $g_wiki_url; ?>doku.php" onclick="ga('send', 'event', 'Support', 'Go to wiki');" type="button" class="ex btn btn-default btn-inverse btn-block">
Go to wiki
</a>
</div>
</div>
</div>
<?php
include( "bot.php" );