-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
69 lines (63 loc) · 2.3 KB
/
index.php
File metadata and controls
69 lines (63 loc) · 2.3 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
<?php
require ("reposettings.php");
?>
<!DOCTYPE html>
<html>
<head>
<!--Import Google Icon Font-->
<link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!--Import materialize.css-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.5/css/materialize.min.css">
<link rel="stylesheet" type="text/css" href="custom.css">
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
</head>
<body>
<header>
<nav>
<div class="nav-wrapper blue-grey darken-4">
<a class="brand-logo center"><?php echo $reponame ?></a>
</div>
</nav>
</header>
<main>
<br><br><br><br>
<div class="container">
<div class="row">
<div class="col s12 m4 offset-m4 center-align">
<div class="card">
<div class="card-content">
<br/>
<p>Welcome to <?php echo $reponame ?>.<br>Please download my repo.list and place on your 3DS' SD card in your InstallMii directory.</p>
</div>
<div class="card-action">
<a href="repo.list" download>Download repo.list</a>
</div>
</div>
</div>
</div>
</div>
</main>
<footer class="page-footer blue-grey darken-3">
<div class="container ">
<div class="row ">
<div class="col l6 s12 ">
<h5 class="white-text">Repo Provided by <?php echo $repoowner ?></h5>
<p class="grey-text text-lighten-4"><?php echo $repoblurb ?></p>
<p class="grey-text text-lighten-3">PHPInstallMiiRepo by ChaosJester and LiquidFenrir</p>
</div>
</div>
</div>
<div class="footer-copyright blue-grey darken-2">
<div class="container">
Created with PHP InstallMii Repo creator.
<a class="grey-text text-lighten-4 right" href="https://github.com/chaosjester/PHPInstallMiiRepo" target="_blank">Project GitHub page</a>
</div>
</div>
</footer>
<!--Import jQuery before materialize.js-->
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.5/js/materialize.min.js"></script>
</body>
</html>