This repository has been archived by the owner on Oct 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
89 lines (83 loc) · 3.84 KB
/
index.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
78
79
80
81
82
83
84
85
86
87
88
89
<?php include_once 'config.php'; ?>
<!DOCTYPE html>
<html class='page font-Roboto' lang='en'>
<div class="video-container">
<video autoplay muted loop id="myVideo">
<source src="https://atlas.r5reloaded.com/assets/bg.mp4" type="video/mp4">
</video>
</div>
<head>
<?php include RCOMPONENTSPATH.'/head.php'; ?>
</head>
<body>
<div class='topheader'>
<div class="img1">
<img src="<?=PUBLICPATH?>/mainlogo.png" alt="apex" width="100" height="100">
</div>
<h1 class='ch1'>R5RELOADED</h1>
<h2 class='ch2'>Apex Legends Modding SDK</h2>
<div class="list">
<a>
<div class='card' onclick='window.open("https://docs.r5reloaded.com/")'>
<div style='display: flex;'>
<img src='<?=PUBLICPATH?>/logo.png' class='card-img' alt='Twitter' draggable=false>
<span class='card-title'>Documentation/Wiki</span>
</div>
<p class='card-desc'>
You can find useful tutorials and information on our wiki page.
</p>
<p class='card-url'>
https://docs.r5reloaded.com/
</p>
</div>
</a>
<a>
<div class='card' onclick='location.href = "<?=SERVERPATH?>/server-list"'>
<div style='display: flex;'>
<img src='<?=PUBLICPATH?>/logo.png' class='card-img' alt='Twitter' draggable=false>
<span class='card-title'>Server List</span>
</div>
<p class='card-desc'>
Want to see what servers are currently operational and running?
</p>
<p class='card-url'>
https://r5reloaded.com/server-list
</p>
</div>
</a>
<a>
<div class='card' onclick='window.open("https://trello.com/b/ymr4R3j9/r5reloaded")'>
<div style='display: flex;'>
<img src='<?=PUBLICPATH?>/logo.png' class='card-img' alt='Twitter' draggable=false>
<span class='card-title'>Trello</span>
</div>
<p class='card-desc'>
Want to see what bugs need fixing, or just view overall progress?
</p>
<p class='card-url'>
https://trello.com/b/ymr4R3j9/r5reloaded
</p>
</div>
</a>
<a>
<div class='card' onclick='window.open("https://github.com/Mauler125/r5sdk/releases")'>
<div style='display: flex;'>
<img src='<?=PUBLICPATH?>/logo.png' class='card-img' alt='Twitter' draggable=false>
<span class='card-title'>Download the Mod</span>
</div>
<p class='card-desc'>
If you need any help downloading or installing the mod join our discord!
</p>
<p class='card-url'>
https://github.com/Mauler125/r5sdk/releases
</p>
</div>
</a>
<br>
</div>
</div>
<?php foreach ($CONFIG->getFrontendScripts() as $scriptPath): ?>
<script src="<?=$scriptPath?>"></script>
<?php endforeach ?>
</body>
</html>