├── js └── playercount.js ├── .gitattributes ├── favicon.ico ├── img ├── slide1.png ├── slide2.png ├── slide3.png ├── features1.png ├── features2.png ├── features3.png ├── serverlogo.png └── minecraft-chest.jpg ├── .htaccess ├── README.md ├── css ├── setup.css ├── style.css └── rules.css ├── setup.html ├── subpages ├── webmap.html └── rules.html └── index.html /js/playercount.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoborsato/TheGrassBlock/HEAD/favicon.ico -------------------------------------------------------------------------------- /img/slide1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoborsato/TheGrassBlock/HEAD/img/slide1.png -------------------------------------------------------------------------------- /img/slide2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoborsato/TheGrassBlock/HEAD/img/slide2.png -------------------------------------------------------------------------------- /img/slide3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoborsato/TheGrassBlock/HEAD/img/slide3.png -------------------------------------------------------------------------------- /img/features1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoborsato/TheGrassBlock/HEAD/img/features1.png -------------------------------------------------------------------------------- /img/features2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoborsato/TheGrassBlock/HEAD/img/features2.png -------------------------------------------------------------------------------- /img/features3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoborsato/TheGrassBlock/HEAD/img/features3.png -------------------------------------------------------------------------------- /img/serverlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoborsato/TheGrassBlock/HEAD/img/serverlogo.png -------------------------------------------------------------------------------- /img/minecraft-chest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoborsato/TheGrassBlock/HEAD/img/minecraft-chest.jpg -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine on 2 | RewriteCond %{THE_REQUEST} /([^.]+)\.html [NC] 3 | RewriteRule ^ /%1 [NC,L,R] 4 | 5 | RewriteCond %{REQUEST_FILENAME}.html -f 6 | RewriteRule ^ %{REQUEST_URI}.html [NC,L] -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |  2 | 3 | # TheGrassBlock 4 | A Simple Minecraft Server Website 5 | 6 | # Information 7 | If you think that something must be changed, please let me know. 8 | I tried to explain every line inside it. What is possible to change and such. 9 | 10 | # Check the Wiki! 11 | Make sure to also check the Wiki for additional help: 12 | https://github.com/ricardoborsato/TheGrassBlock/wiki 13 | -------------------------------------------------------------------------------- /css/setup.css: -------------------------------------------------------------------------------- 1 | @import url(https://fonts.googleapis.com/css?family=Roboto:300); 2 | 3 | .login-page { 4 | width: 360px; 5 | padding: 8% 0 0; 6 | margin: auto; 7 | } 8 | .form { 9 | position: relative; 10 | z-index: 1; 11 | background: #FFFFFF; 12 | max-width: 360px; 13 | margin: 0 auto 100px; 14 | padding: 45px; 15 | text-align: center; 16 | box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24); 17 | } 18 | .form input { 19 | font-family: "Roboto", sans-serif; 20 | outline: 0; 21 | background: #f2f2f2; 22 | width: 100%; 23 | border: 0; 24 | margin: 0 0 15px; 25 | padding: 15px; 26 | box-sizing: border-box; 27 | font-size: 14px; 28 | } 29 | .form button { 30 | font-family: "Roboto", sans-serif; 31 | text-transform: uppercase; 32 | outline: 0; 33 | background: rgb(25, 150, 25); 34 | width: 100%; 35 | border: 0; 36 | padding: 15px; 37 | color: #FFFFFF; 38 | font-size: 14px; 39 | transition: all 0.3 ease; 40 | cursor: pointer; 41 | border-width: 10px; 42 | transition: 0.3s; 43 | 44 | } 45 | .form button:hover,.form button:active,.form button:focus { 46 | background: rgb(12, 116, 12); 47 | transition: 0.3s; 48 | 49 | } 50 | .form .message { 51 | margin: 15px 0 0; 52 | color: #b3b3b3; 53 | font-size: 12px; 54 | } 55 | .form .message a { 56 | color: #4CAF50; 57 | text-decoration: none; 58 | } 59 | .form .register-form { 60 | display: none; 61 | } 62 | .container { 63 | position: relative; 64 | z-index: 1; 65 | max-width: 300px; 66 | margin: 0 auto; 67 | } 68 | .container:before, .container:after { 69 | content: ""; 70 | display: block; 71 | clear: both; 72 | } 73 | .container .info { 74 | margin: 50px auto; 75 | text-align: center; 76 | } 77 | .container .info h1 { 78 | margin: 0 0 15px; 79 | padding: 0; 80 | font-size: 36px; 81 | font-weight: 300; 82 | color: #1a1a1a; 83 | } 84 | .container .info span { 85 | color: #4d4d4d; 86 | font-size: 12px; 87 | } 88 | .container .info span a { 89 | color: #000000; 90 | text-decoration: none; 91 | } 92 | .container .info span .fa { 93 | color: #EF3B3A; 94 | } 95 | 96 | .card-img-top { 97 | height: 50px 50px; 98 | } -------------------------------------------------------------------------------- /setup.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 |🗺 Our Server Map! 🗺
95 |⚠📜 Follow and Respect 📜⚠
95 |The best server ever! Lightweight is the way!
156 |We are hosted with a great hosting! Our package is the best one so you won't experience lag or crashes that interrupts the gameplay.
166 |Near to you! As we have no lag, the ping is also extremely low. Seems you're playing locally!
171 |Find the love of your Minecraft. Play with us and increase
176 |News coming out of the oven!
186 |Some features of our Server!
245 |
257 |
259 | Our economy is very balanced! There is no way to be very rich or very poor.
260 |
261 | Buy items from the Villagers' tents and invest in your adventure!
262 |
268 |
270 | Buy your own house today! TheGrassBlock runs with the greatest Towny system.
271 |
272 | Build your house in our city today!
273 |
278 |
280 | TheGrassBlock has daily PvP Events just for fun!
281 |
282 | Bring your friends and let's practice together!
283 |
284 | Are you ready to show us your abilities?
285 |
Several famous people play at TheGrassBlock and recommend to everyone to come and meet the family!
297 |Petter, A Famous Youtuber
305 |Our Bests Helpers! You can always count with them!
314 |339 | 340 | Player1 is TheGrassBlock Founder. 341 | He worked hard on begginig to keep the Server Alive and make everyting possible. 342 |
343 |370 | 371 | Player2 is TheGrassBlock Co-Owner. 372 | Usually is online everyday and gives all Information to the Player1, the server owner. 373 |
374 |401 | 402 | Gandalf is our First Server Admin. 403 | Makes every player inspired. 404 | Gandalf also uses the magic to Setup every server coner! 405 |
406 |433 | 434 | Player3 is the Eye of Police! 435 | Pay atention to every place! Don't use Hacks! Don't go against the Rules! 436 | She'll make Justice! 437 |
438 |465 | 466 | Other exampe to exemplify the example. 467 | The card lines should give 1 line on mobile or 4 cards on desktop. 468 |
469 |