-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelp.html
More file actions
80 lines (73 loc) · 3.41 KB
/
Copy pathhelp.html
File metadata and controls
80 lines (73 loc) · 3.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Help | MCPE-Source</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="navbar navbar-inverse">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse"
data-target="#navbar-collapse" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html"><img src="logo.png" width="150px"></a>
</div>
<div class="collapse navbar-collapse" id="navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="index.html">Home</a></li>
<li><a href="maps.html">Maps</a></li>
<li><a href="mods.html">Mods</a></li>
<li><a href="textures.html">Textures</a></li>
<li><a href="plugins.html">Plugins</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="upload.html" class="suggest-content-btn">Upload Content</a></li>
<li><a href="profile.html"><span class="glyphicon glyphicon-user"></span> Profile</a></li>
<li><a href="help.html">Help</a></li>
</ul>
</div>
</div>
</nav>
<div class="container">
<h1>Help</h1>
<br>
<h3><b>How to upload content</b></h3>
<p>Use the <a href="upload.html">Upload</a> page to upload content, or use the <a
href="android_app.html">Android app</a>.</p>
<br>
<h3><b>Where can I find the source code of Android / other platform version of MCPE-Source?</b></h3>
<p>You can find the MCPE-Source source code on <a href="https://github.com/MCPE-Source">our GitHub</a>.</p>
<br>
<hr>
<h2>Platform</h2><br>
<a href="stats.html" class="btn btn-primary" style="width: 250px;">Statistics</a>
</div>
<br><br><br>
<iframe src="footer.html" style="width: 100%; height: 40px; border: none; overflow: hidden;"></iframe>
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script>
(function () {
function updateNavbarProfile() {
var cachedName = localStorage.getItem('gh_username');
var cachedAvatar = localStorage.getItem('gh_avatar');
if (cachedName && cachedAvatar) {
$('a[href="profile.html"]').html('<img src="' + cachedAvatar + '" style="width: 20px; height: 20px; border-radius: 50%; vertical-align: middle; margin-right: 5px; object-fit: cover;"> <span>' + cachedName + '</span>');
} else {
$('a[href="profile.html"]').html('<span class="glyphicon glyphicon-user"></span> Profile');
}
}
window.updateNavbarProfile = updateNavbarProfile;
$(document).ready(updateNavbarProfile);
})();
</script>
</body>
</html>