Advertisement
Guest User

Untitled

a guest
Jan 12th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.64 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5.  
  6. <title>Nexus-WoW</title>
  7. <!--
  8. GitHub: http://github.com/brian8544/WOW_CMS
  9. -->
  10.  
  11. <!-- Database Config -->
  12. <?php
  13.  
  14. $address = "localhost"; // Machine where MySQL is hosted
  15. $username = "root"; // MySQL username
  16. $password = "ascent"; // MySQL password
  17. $database = "cms"; // Name of the database
  18.  
  19. mysql_connect('$adress','$username','#password');
  20. mysql_select_db('$database');
  21.  
  22.  
  23. <meta http-equiv="X-UA-Compatible" content="IE=Edge">
  24. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  25. <meta name="viewport" content="width=device-width, initial-scale=1">
  26. <meta name="keywords" content="">
  27. <meta name="description" content="">
  28.  
  29. <!-- animate -->
  30. <link rel="stylesheet" href="css/animate.min.css">
  31. <!-- bootstrap -->
  32. <link rel="stylesheet" href="css/bootstrap.min.css">
  33. <!-- font-awesome -->
  34. <link rel="stylesheet" href="css/font-awesome.min.css">
  35. <!-- google font -->
  36. <link href='http://fonts.googleapis.com/css?family=Raleway:400,300,700,800' rel='stylesheet' type='text/css'>
  37. <!-- custom -->
  38. <link rel="stylesheet" href="css/style.css">
  39.  
  40. </head>
  41. <body data-spy="scroll" data-offset="50" data-target=".navbar-collapse">
  42.  
  43. <!-- start navigation -->
  44. <div class="navbar navbar-fixed-top navbar-default" role="navigation">
  45. <div class="container">
  46. <div class="navbar-header">
  47. <button class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
  48. <span class="icon icon-bar"></span>
  49. <span class="icon icon-bar"></span>
  50. <span class="icon icon-bar"></span>
  51. </button>
  52. </div>
  53. <div class="collapse navbar-collapse">
  54. <ul class="nav navbar-nav navbar-right">
  55. <li><a href="#home" class="smoothScroll">Home</a></li>
  56. <li><a href="register/" class="smoothScroll">Create Account</a></li>
  57. <li><a href="forum/forumdisplay.php?fid=7" class="smoothScroll">How To Connect</a></li>
  58. <li><a href="forum/" class="smoothScroll">Forum</a></li>
  59. <li><a href="#about" class="smoothScroll">About</a></li>
  60. <li><a href="armory/" class="smoothScroll">Armory (Soon!)</a></li>
  61. <li><a href="login/" class="smoothScroll">Login</a></li>
  62. </ul>
  63. </div>
  64. </div>
  65. </div>
  66. <!-- end navigation -->
  67.  
  68. <!-- start home -->
  69. <section id="home" class="text-center">
  70. <div class="templatemo_headerimage">
  71. <div class="flexslider">
  72. <ul class="slides">
  73. <li>
  74. <img src="images/slider/1.jpg" alt="">
  75. <div class="slider-caption">
  76. <div class="templatemo_homewrapper">
  77. <h1 class="wow fadeInDown" data-wow-delay="2000"><b>Welcome to Nexus-WoW!</b></h1>
  78. <h2 class="wow fadeInDown" data-wow-delay="2000">
  79. <span>Cataclysm &AMP; Legion Private Server</span>
  80. </h2>
  81. <a href="register/" class="smoothScroll btn btn-default wow fadeInDown" data-wow-delay="2000">Register!</a>
  82. </div>
  83. </div>
  84. </li>
  85. <li>
  86. <img src="images/slider/2.jpg" alt="">
  87. <div class="slider-caption">
  88. <div class="templatemo_homewrapper">
  89. <h1 class="wow fadeInDown" data-wow-delay="2000">Legion has been released</h1>
  90. <h2 class="wow fadeInDown" data-wow-delay="2000">
  91. <span>After a month of extensive testing, Legion realm is now live.</span>
  92. </h2>
  93. <!-- <p>Issues may occur!</p> -->
  94. <!-- <a href="#about" class="smoothScroll btn btn-default wow fadeInDown" data-wow-delay="2000">See about us</a> -->
  95. </div>
  96. </div>
  97. </li>
  98. </ul>
  99. </div>
  100. </div>
  101. </section>
  102. <!-- end home -->
  103.  
  104.  
  105. <div id="news">
  106. <div class="container">
  107. <div class="row">
  108. <div class="col-md-12">
  109. <h2 class="wow bounce">Latest Announcements</h2>
  110. </div>
  111. <div class="col-md-4 col-sm-4 wow fadeIn" data-wow-delay="0.3s">
  112. <img src="images/gnome_engineer.jpg" class="img-responsive" alt="team img">
  113. <?php
  114. for (i=1; i<numberOfNews; i++) {
  115. $query = mysql_query("SELECT * FROM news WHERE `id` = 'i'");
  116. while($output = mysql_fetch_assoc($query)) {
  117. echo '<h4>'.date ('D-M-Y', $output['date']).'</h4>';
  118. echo '<p>';
  119. echo '<h3>'.$output['news'].'</h3>';
  120. echo '<p>'.$output['subject'].'</p>';
  121. }
  122. }
  123. ?>
  124. </div>
  125. <div class="col-md-4 col-sm-4 wow fadeIn" data-wow-delay="0.6s">
  126. <img src="images/gnome_engineer.jpg" class="img-responsive" alt="team img">
  127. <?php
  128. for (i=1; i<numberOfNews; i++) {
  129. $query = mysql_query("SELECT * FROM news WHERE `id` = 'i'");
  130. while($output = mysql_fetch_assoc($query)) {
  131. echo '<h4>'.date ('D-M-Y', $output['date']).'</h4>';
  132. echo '<p>';
  133. echo '<h3>'.$output['news'].'</h3>';
  134. echo '<p>'.$output['subject'].'</p>';
  135. }
  136. }
  137. ?>
  138. </div>
  139. <div class="col-md-4 col-sm-4 wow fadeIn" data-wow-delay="0.9s">
  140. <img src="images/gnome_engineer.jpg" class="img-responsive" alt="team img">
  141. <?php
  142. for (i=1; i<numberOfNews; i++) {
  143. $query = mysql_query("SELECT * FROM news WHERE `id` = 'i'");
  144. while($output = mysql_fetch_assoc($query)) {
  145. echo '<h4>'.date ('D-M-Y', $output['date']).'</h4>';
  146. echo '<p>';
  147. echo '<h3>'.$output['news'].'</h3>';
  148. echo '<p>'.$output['subject'].'</p>';
  149. }
  150. }
  151. ?>
  152. </div>
  153. </div>
  154. </div>
  155. </div>
  156. <br></br>
  157. <br></br>
  158.  
  159. <div id="divider">
  160. <div class="container">
  161. <div class="row">
  162. <div class="col-md-1 col-sm-1"></div>
  163. <div class="col-md-8 col-sm-8">
  164. <h2 class="wow bounce">We try to provide the best <strong>Blizzlike</strong> experience possible.</h2>
  165. <p class="wow fadeInUp" data-wow-delay="0.9s">We do this by extensively testing scripts on our PTR before releasing it on the live realms.</p>
  166. </div>
  167. <div class="col-md-2 col-sm-2"></div>
  168. </div>
  169. </div>
  170. </div>
  171.  
  172. <div id="about">
  173. <div class="container">
  174. <div class="row">
  175. <div class="col-md-6 col-sm-6 wow fadeInLeft" data-wow-delay="0.9s">
  176. <h3>About Nexus-WoW</h3>
  177. <h4></h4>
  178. <p>We are a fairly new private server, started in January 2017.</p>
  179. <p>Currently we are offering Cataclysm & Legion expansions.</p>
  180. <p></p>
  181. </div>
  182. <div class="col-md-6 col-sm-6 wow fadeInRight" data-wow-delay="0.9s">
  183.  
  184. </div>
  185. </div>
  186.  
  187.  
  188. <div id="service">
  189. <div class="container">
  190. <div class="row">
  191. <div class="col-md-4 col-sm-4">
  192. <div class="media">
  193. <div class="media-object media-left wow fadeIn" data-wow-delay="0.1s">
  194. <i class="fa fa-server"></i>
  195. </div>
  196. <div class="media-body wow fadeIn">
  197. <h3 class="media-heading">High Uptime</h3>
  198. <p>Since we take this project very seriously, we try to limit crashes & reboots on our realms.</p>
  199. </div>
  200. </div>
  201. </div>
  202. <div class="col-md-4 col-sm-4">
  203. <div class="media">
  204. <div class="media-object media-left wow fadeIn" data-wow-delay="0.3s">
  205. <i class="fa fa-file-text"></i>
  206. </div>
  207. <div class="media-body wow fadeIn">
  208. <h3 class="media-heading">Good Quality Scripting</h3>
  209. <p>Scripts will only be published to our live realms when undergone testing.</p>
  210. </div>
  211. </div>
  212. </div>
  213. <div class="col-md-4 col-sm-4">
  214. <div class="media">
  215. <div class="media-object media-left wow fadeIn" data-wow-delay="0.6s">
  216. <i class="fa fa-user"></i>
  217. </div>
  218. <div class="media-body wow fadeIn" data-wow-delay="0.3s">
  219. <h3 class="media-heading">Professional Staff</h3>
  220. <p>We try to provide for the most "Blizzlike" assistance on In-Game and on our forums. &nbsp; &nbsp; &nbsp;</p>
  221. </div>
  222. </div>
  223. </div>
  224. <div class="col-md-4 col-sm-4">
  225. <div class="media">
  226. <div class="media-object media-left wow fadeIn" data-wow-delay="0.9s">
  227. <i class="fa fa-sitemap"></i>
  228. </div>
  229. <div class="media-body wow fadeIn" data-wow-delay="0.6s">
  230. <h3 class="media-heading">Anti DDOS Attack Protection</h3>
  231. <p>We got an active DDOS protection plan.</p>
  232. </div>
  233. </div>
  234. </div>
  235. <div class="col-md-4 col-sm-4">
  236. <div class="media">
  237. <div class="media-object media-left wow fadeIn" data-wow-delay="0.4s">
  238. <i class="fa fa-code-fork"></i>
  239. </div>
  240. <div class="media-body wow fadeIn" data-wow-delay="0.3s">
  241. <h3 class="media-heading">Open Source</h3>
  242. <p>We weekly push our updates to the official <a href="https://github.com/TrinityCore/TrinityCore/tree/6.x">TrinityCore</a> Github.</p>
  243. </div>
  244. </div>
  245. </div>
  246. <div class="col-md-4 col-sm-4">
  247. <div class="media">
  248. <div class="media-object media-left wow fadeIn" data-wow-delay="0.8s">
  249. <i class="fa fa-hdd-o"></i>
  250. </div>
  251. <div class="media-body wow fadeIn" data-wow-delay="0.6s">
  252. <h3 class="media-heading">No DMCA(claim) Shutdowns</h3>
  253. <p>Due to hosting our server offshore, Blizzard cannot shutdown our servers. No worries about losing characters!</p>
  254. </div>
  255. </div>
  256. </div>
  257. </div>
  258. </div>
  259. </div>
  260.  
  261.  
  262.  
  263. <footer>
  264. <div class="container">
  265. <div class="row">
  266. <div class="col-md-8 col-sm-7">
  267. <p>Copyright &copy; 2016-2017 <a rel="nofollow" href="http://nexus-wow.eu" target="_parent">Nexus Entertainment LLC.</a></p>
  268. </div>
  269. <div class="col-md-4 col-sm-5">
  270. <ul class="social-icon">
  271. <li><a href="#" class="fa fa-facebook"></a></li>
  272. <li><a href="#" class="fa fa-twitter"></a></li>
  273. <li><a href="#" class="fa fa-github"></a></li>
  274. </ul>
  275. </div>
  276. </div>
  277. </div>
  278. </footer>
  279.  
  280.  
  281.  
  282. <!-- jQuery -->
  283. <script src="js/jquery.js"></script>
  284. <!-- bootstrap -->
  285. <script src="js/bootstrap.min.js"></script>
  286. <!-- isotope -->
  287. <script src="js/isotope.js"></script>
  288. <!-- images loaded -->
  289. <script src="js/imagesloaded.min.js"></script>
  290. <!-- wow -->
  291. <script src="js/wow.min.js"></script>
  292. <!-- smoothScroll -->
  293. <script src="js/smoothscroll.js"></script>
  294. <!-- jquery flexslider -->
  295. <script src="js/jquery.flexslider.js"></script>
  296. <!-- custom -->
  297. <script src="js/custom.js"></script>
  298.  
  299. </body>
  300. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement