Advertisement
Guest User

Untitled

a guest
May 22nd, 2019
1,025
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.32 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  5. <jdoc:include type="head" />
  6.  
  7. <link href="<?php echo $this->baseurl; ?>/templates/<?php echo $this->template; ?>/css/custom.css" rel="stylesheet">
  8. <link href="<?php echo $this->baseurl; ?>/templates/<?php echo $this->template; ?>/css/bootstrap.css" rel="stylesheet">
  9. <script src="<?php echo $this->baseurl; ?>/templates/<?php echo $this->template; ?>/js/jquery.js"></script>
  10. <script src="<?php echo $this->baseurl; ?>/templates/<?php echo $this->template; ?>/js/bootstrap.js"></script>
  11. <?php
  12. $config = JFactory::getConfig();
  13. ?>
  14. <style>
  15. .main {
  16. background-color: #f3f3f3;
  17. border-radius: 16px;
  18. padding: 20px;
  19. }
  20. aside {
  21. background-color: #f3f3f3;
  22. width: 250px;
  23. min-height: 500px;
  24. float: right;
  25. }
  26. </style>
  27. </head>
  28.  
  29. <body>
  30. <nav class="navbar navbar-expand-lg navbar-dark bg-dark">
  31. <a class="navbar-brand font-weight-bold" href="index.php">
  32. <img src="<?php echo $this->baseurl; ?>/templates/<?php echo $this->template; ?>/favicon.ico" width="30px" height="30px">
  33. <?php echo $config->get('sitename'); ?>
  34. </a>
  35. <button class="navbar-toggler" type="button" data-toggle="collapse"
  36. data-target="#navbarResponsive" aria-controls="navbarResponsive"
  37. aria-expanded="false" aria-label="Toggle navigation">
  38. <span class="navbar-toggler-icon"></span>
  39. </button>
  40.  
  41. <div class="collapse navbar-collapse" id="navbarResponsive">
  42. <ul class="navbar-nav ml-auto">
  43. <li class="nav-item">
  44. <jdoc:include type="modules" name="navigation" style="none" />
  45. </li>
  46. </ul>
  47. </div>
  48. </nav>
  49.  
  50. <div class="jumbotron text-center">
  51. <p class="font-weight-bold display-1"><?php echo $config->get('sitename'); ?></p>
  52. </div>
  53.  
  54. <div class="container">
  55. <main class="main">
  56. <jdoc:include type="component" />
  57. </main>
  58. <footer>
  59. <jdoc:include type="modules" name="footer" />
  60. </footer>
  61. </div>
  62. </body>
  63. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement