Advertisement
ugochukwu15

Untitled

Aug 3rd, 2017
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.65 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>{% block title %}Emcee Vibes{% endblock %}</title>
  6.     {% load staticfiles %}
  7.     <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
  8.     <link href="https://fonts.googleapis.com/css?family=Satisfy" rel="stylesheet" type="text/css">
  9.     <link rel="stylesheet" type="text/css" href="{% static 'music/style.css' %}"/>
  10.     <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
  11.     <script scr="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
  12. </head>
  13. <body>
  14.     <nav class = "navbar navbar-inverse">
  15.     <div class="container-fluid">
  16.  
  17.         <!-- Header -->
  18.         <div class="navbar-header">
  19.             <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#topNavBar">
  20.                 <span class="icon-bar"></span>
  21.                 <span class="icon-bar"></span>
  22.                 <span class="icon-bar"></span>
  23.             </button>
  24.             <a class="navbar-brand" href="{% url 'music:index' %}">Emcee Vibes</a>
  25.         </div>
  26.         <!-- Items -->
  27.         <div class="collapse navbar-collapse" id="topNavBar">
  28.             <ul class="nav navbar-nav">
  29.                 <li class="active">
  30.                     <a href="{% url 'music:index' %}">
  31.                         <span class="glyphicon glyphicon-cd" aria-hidden="true"></span>&nbsp; Albums
  32.                     </a>
  33.                 </li>
  34.                 <li class="">
  35.                     <a href="#">
  36.                         <span class="glyphicon glyphicon-music" aria-hidden="true"></span>&nbsp; Songs
  37.                     </a>
  38.                 </li>
  39.             </ul>
  40.  
  41.             <form class="navbar-form navbar-left" role="search" method="get" action="#">
  42.                 <div class="form-group">
  43.                     <input type="text" class="form-control" name="q" value="">
  44.  
  45.                 </div>
  46.                 <button type="submit" class="btn btn-default">Search</button>
  47.             </form>
  48.  
  49.             <ul class="nav navbar-nav navbar-right">
  50.  
  51.                 <li>
  52.                     <a href="#">
  53.                         <span class="glyphicon glyphicon-plus" aria-hidden="true"></span>&nbsp;Add Album
  54.                     </a>
  55.                 </li>
  56.                 <li>
  57.                     <a href="#">
  58.                         <span class="glyphicon glyphicon-off" aria-hidden="true"></span>&nbsp;Logout
  59.                     </a>
  60.                 </li>
  61.             </ul>
  62.  
  63.         </div>
  64.  
  65.     </div>
  66. </nav>
  67. {% block body %}
  68. {% endblock %}
  69. </body>
  70. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement