|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en" dir="ltr"> |
| 3 | + |
| 4 | +<head> |
| 5 | + <meta charset="utf-8" /> |
| 6 | + <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no" /> |
| 7 | + <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> |
| 8 | + <meta name="HandheldFriendly" content="true" /> |
| 9 | + <!-- fonts --> |
| 10 | + <link href="https://fonts.googleapis.com/css?family=Indie+Flower&display=swap" rel="stylesheet" /> |
| 11 | + <link href="https://fonts.googleapis.com/css?family=Caveat&display=swap" rel="stylesheet" /> |
| 12 | + <link href="https://fonts.googleapis.com/css?family=Patrick+Hand&display=swap" rel="stylesheet" /> |
| 13 | + <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" /> |
| 14 | + <!-- !fonts --> |
| 15 | + <title>Miku Bot</title> |
| 16 | + <!-- libs --> |
| 17 | + <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> |
| 18 | + <script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script> |
| 19 | + <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/typeit.min.js"></script> |
| 20 | + <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css"> |
| 21 | + |
| 22 | + <!-- !libs --> |
| 23 | + <!-- user-defined --> |
| 24 | + <script src="js/user.js" charset="utf-8"></script> |
| 25 | + <link rel="stylesheet" href="css/user.css" /> |
| 26 | + <!-- !user-defined --> |
| 27 | +</head> |
| 28 | + |
| 29 | +<body> |
| 30 | + <!-- header --> |
| 31 | + <div class="canvas-header"> |
| 32 | + <nav> |
| 33 | + <div class="nav-wrapper"> |
| 34 | + <a href="#" class="brand-logo center">Miku</a> |
| 35 | + <ul id="nav-mobile" class="right hide-on-med-and-down"> |
| 36 | + <li><a href="#about">About</a></li> |
| 37 | + <li><a href="#commands">Commands</a></li> |
| 38 | + <li><a href="#more">Additional Features!</a></li> |
| 39 | + <li><a href="#">Invite!</a></li> |
| 40 | + </ul> |
| 41 | + </div> |
| 42 | + </nav> |
| 43 | + <!-- header image --> |
| 44 | + <div class="parallax-container header-image"> |
| 45 | + <h1 id="typewriting"></h1> |
| 46 | + <div class="parallax"><img src="https://cdn.glitch.com/66028ce3-d8f3-4656-aee3-c294c177ba0c%2F1.png?v=1574709973716" /></div> |
| 47 | + </div> |
| 48 | + <!-- !header image --> |
| 49 | + </div> |
| 50 | + <!-- !header --> |
| 51 | + |
| 52 | + <div class="body"> |
| 53 | + <!-- about --> |
| 54 | + <div class="section white" id="about"> |
| 55 | + <div class="row container"> |
| 56 | + <h2 class="header ohidden">About</h2> |
| 57 | + <p class="grey-text text-darken-3 lighten-3 ohidden"> |
| 58 | + Miku is a <i>just4fun</i> bot made by <i>12042#5754</i> with all |
| 59 | + of his <b>♡</b>! |
| 60 | + </p> |
| 61 | + </div> |
| 62 | + </div> |
| 63 | + <!-- !about --> |
| 64 | + |
| 65 | + <!-- 2nd image --> |
| 66 | + <div class="parallax-container"> |
| 67 | + <div class="parallax"><img src="https://cdn.glitch.com/66028ce3-d8f3-4656-aee3-c294c177ba0c%2F3.png?v=1574710050745" /></div> |
| 68 | + </div> |
| 69 | + <!-- !2nd image --> |
| 70 | + <!-- commands --> |
| 71 | + <div class="section white" id="commands"> |
| 72 | + <div class="row container"> |
| 73 | + <h2 class="header ohidden">Available Commands</h2> |
| 74 | + <ul class="collapsible ohidden"> |
| 75 | + {{#each data.command}} |
| 76 | + <li> |
| 77 | + <div class="collapsible-header">{{@key}}</div> |
| 78 | + <div class="collapsible-body commands"> |
| 79 | + <table> |
| 80 | + <thead> |
| 81 | + <tr> |
| 82 | + <th>Name</th> |
| 83 | + <th>Description</th> |
| 84 | + <th>Usage</th> |
| 85 | + </tr> |
| 86 | + </thead> |
| 87 | + <tbody> |
| 88 | + {{#each this}} |
| 89 | + <tr> |
| 90 | + <td>{{this.help.name}}</td> |
| 91 | + <td>{{this.help.description}}</td> |
| 92 | + <td>{{this.help.usage}}</td> |
| 93 | + </tr> |
| 94 | + {{/each}} |
| 95 | + </tbody> |
| 96 | + </table> |
| 97 | + </div> |
| 98 | + </li> |
| 99 | + {{/each}} |
| 100 | + </ul> |
| 101 | + </div> |
| 102 | + </div> |
| 103 | + <!-- !commands --> |
| 104 | + |
| 105 | + <!-- 3rd image --> |
| 106 | + <div class="parallax-container more"> |
| 107 | + <h1>🌟🌟🌟</h1> |
| 108 | + <div class="parallax"><img src="https://cdn.glitch.com/66028ce3-d8f3-4656-aee3-c294c177ba0c%2F4.png?v=1574710040425" /></div> |
| 109 | + </div> |
| 110 | + <!-- !3rd image --> |
| 111 | + |
| 112 | + <!-- more features --> |
| 113 | + <div class="section white" id="more"> |
| 114 | + <div class="row container"> |
| 115 | + <h2 class="header ohidden">More Features!</h2> |
| 116 | + <p class="grey-text text-darken-3 lighten-3 ohidden"> |
| 117 | + Miku also comes with few more feature includings : |
| 118 | + </p> |
| 119 | + <table class="more-feature ohidden"> |
| 120 | + <tr> |
| 121 | + <td>Greeting system</td> |
| 122 | + <td>:</td> |
| 123 | + <td>Miku will greet new members</td> |
| 124 | + </tr> |
| 125 | + <tr> |
| 126 | + <td>Custom prefix system</td> |
| 127 | + <td>:</td> |
| 128 | + <td>Tired of using default prefix? Change it!</td> |
| 129 | + </tr> |
| 130 | + <tr> |
| 131 | + <td>Starboard system</td> |
| 132 | + <td>:</td> |
| 133 | + <td> |
| 134 | + Everytime a message has more than 3 stars, Miku will send it |
| 135 | + to your server's starboard channel! ⭐⭐⭐ |
| 136 | + </td> |
| 137 | + </tr> |
| 138 | + </table> |
| 139 | + </div> |
| 140 | + </div> |
| 141 | + <!-- !more features --> |
| 142 | + |
| 143 | + <footer class="page-footer"> |
| 144 | + <div class="container"> |
| 145 | + <div class="row"> |
| 146 | + <div class="col l6 s12"> |
| 147 | + <h5 class="grey-text text-darken-4">Lorem Ipsum</h5> |
| 148 | + <hr> |
| 149 | + <p class="grey-text text-darken-2">Lorem ipsum dolor sit amet, what should I type here?</p> |
| 150 | + </div> |
| 151 | + <div class="col l4 offset-l2 s12"> |
| 152 | + <h5 class="grey-text text-darken-4">Useful Links</h5> |
| 153 | + <hr> |
| 154 | + <p class="grey-text text-darken-2">No links yet!</p> |
| 155 | + </div> |
| 156 | + </div> |
| 157 | + </div> |
| 158 | + <div class="footer-copyright"> |
| 159 | + <div class="container center"> |
| 160 | + <span class="grey-text text-darken-1">standinshd</span> |
| 161 | + </div> |
| 162 | + </div> |
| 163 | + </footer> |
| 164 | + </div> |
| 165 | +</body> |
| 166 | + |
| 167 | +</html> |
0 commit comments