-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
144 lines (129 loc) · 5.44 KB
/
index.html
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Homepage for the NamelessMC website CMS">
<meta name="author" content="Samerton and NamelessMC Contributers">
<link rel="icon" href="favicon.ico">
<title>NamelessMC Website Software</title>
<link href="assets/css/bootstrap.css" rel="stylesheet">
<style>
body {
padding-top: 20px;
padding-bottom: 20px;
}
.navbar {
margin-bottom: 20px;
}
</style>
</head>
<body>
<div class="container">
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<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="/">NamelessMC</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="/">Home</a></li>
<li><a href="/features/">Features</a></li>
<li><a href="http://namelessmc.com">Demo</a></li>
<li><a href="https://github.com/NamelessMC/Nameless/releases">Download</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="https://github.com/NamelessMC/Nameless">GitHub</a></li>
<li><a href="http://www.spigotmc.org/threads/nameless-minecraft-website-software.34810">Support</a></li>
</ul>
</div>
</div>
</nav>
</div>
<div class="container">
<center>
<strong>
<h3>This website is no longer maintained. For the new site please visit <a href="https://namelessmc.com">https://namelessmc.com</a></h3>NamelessMC is a website package written in PHP which aims to provide servers with a free and easy to use online community "hub".<br /><a href="#" data-toggle="modal" data-target="#reqModal">Requirements</a></strong>
<hr>
<div class="row">
<div class="col-lg-4">
<h1><span class="glyphicon glyphicon-comment"></span></h1>
<h2>Communicate</h2>
<p>Create a hub for your community with the forums, view latest news and your Twitter feed on the front page.</p>
</div>
<div class="col-lg-4">
<h1><span class="glyphicon glyphicon-refresh"></span></h1>
<h2>Integrate</h2>
<p>View ingame player statistics and infractions on player profiles, and integrate your Buycraft or MinecraftMarket donation store with your website.</p>
</div>
<div class="col-lg-4">
<h1><span class="glyphicon glyphicon-wrench"></span></h1>
<h2>Customise</h2>
<p>Switch between themes with the click of a button, and create your own custom pages.</p>
</div>
</div>
<div class="row">
<div class="col-lg-4">
<h1><span class="glyphicon glyphicon-phone"></span></h1>
<h2>Responsive</h2>
<p>NamelessMC is built with Bootstrap, resulting in a fully responsive website.</p>
</div>
<div class="col-lg-4">
<h1><span class="glyphicon glyphicon-stats"></span></h1>
<h2>Analyse</h2>
<p>View statistics for your Minecraft servers, including server performance and player activity.</p>
</div>
<div class="col-lg-4">
<h1><span class="glyphicon glyphicon-console"></span></h1>
<h2>Open Source</h2>
<p>NamelessMC is released under the MIT license, and all code is viewable on GitHub.</p>
</div>
</div>
<hr>
<div class="btn-group">
<a href="https://github.com/NamelessMC/Nameless/archive/master.zip" class="btn btn-primary btn-lg">Download</a>
</div>
<hr>
</center>
<!-- FOOTER -->
<footer>
<span class="pull-right"><p>NamelessMC is released under the <a href="https://raw.githubusercontent.com/NamelessMC/Nameless/master/LICENSE">MIT License</a></p></span>
<p>© NamelessMC 2014-<script>document.write(new Date().getFullYear())</script></p>
</footer>
</div><!-- /.container -->
<!-- Modal -->
<div class="modal fade" id="reqModal" tabindex="-1" role="dialog" aria-labelledby="reqModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="reqModalLabel">Requirements</h4>
</div>
<div class="modal-body">
PHP 5.3+<br />
PHP PDO and MySQLi extensions<br />
PHP-mcrypt extension<br />
PHP-GD extension<br />
MySQL database<br />
At least one Minecraft server<br />
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
</body>
</html>