108 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			108 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
| {% load staticfiles i18n %}<!DOCTYPE html>
 | |
| <html lang="en" ng-app>
 | |
|   <head>
 | |
|     <meta charset="utf-8">
 | |
|     <meta http-equiv="x-ua-compatible" content="ie=edge">
 | |
|     <title>{% block title %}funkwhale_api{% endblock title %}</title>
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | |
|     <meta name="description" content="">
 | |
|     <meta name="author" content="">
 | |
| 
 | |
|     <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
 | |
|     <!--[if lt IE 9]>
 | |
|       <script src="https://html5shim.googlecode.com/svn/trunk/html5.js"></script>
 | |
|     <![endif]-->
 | |
| 
 | |
|     {% block css %}
 | |
|     <!-- Latest compiled and minified CSS -->
 | |
|     <link rel="stylesheet" href="https://cdn.rawgit.com/twbs/bootstrap/v4-dev/dist/css/bootstrap.css">
 | |
| 
 | |
|     <!-- Your stuff: Third-party css libraries go here -->
 | |
| 
 | |
|     <!-- This file store project specific CSS -->
 | |
|     <link href="{% static 'css/project.css' %}" rel="stylesheet">
 | |
|     {% endblock %}
 | |
| 
 | |
|     {% block angular %}
 | |
|     <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
 | |
|     {% endblock %}
 | |
| 
 | |
|   </head>
 | |
| 
 | |
|   <body>
 | |
| 
 | |
|     <div class="m-b">
 | |
|       <nav class="navbar navbar-dark navbar-static-top bg-inverse">
 | |
|         <div class="container">
 | |
|           <a class="navbar-brand" href="/">funkwhale_api</a>
 | |
|           <button type="button" class="navbar-toggler hidden-sm-up pull-right" data-toggle="collapse" data-target="#bs-navbar-collapse-1">
 | |
|             ☰
 | |
|           </button>
 | |
| 
 | |
|           <!-- Collect the nav links, forms, and other content for toggling -->
 | |
|           <div class="collapse navbar-toggleable-xs" id="bs-navbar-collapse-1">
 | |
|             <ul class="nav navbar-nav">
 | |
|               <li class="nav-item">
 | |
|                 <a class="nav-link" href="">Home</a>
 | |
|               </li>
 | |
|               <li class="nav-item">
 | |
|                 <a class="nav-link" href="">About</a>
 | |
|               </li>
 | |
|             </ul>
 | |
| 
 | |
|             <ul class="nav navbar-nav pull-right">
 | |
|               {% if request.user.is_authenticated %}
 | |
|                 <li class="nav-item">
 | |
|                   <a class="nav-link" href="{% url 'users:detail' request.user.username  %}">{% trans "My Profile" %}</a>
 | |
|                 </li>
 | |
|                 <li class="nav-item">
 | |
|                   <a class="nav-link" href="{% url 'account_logout' %}">{% trans "Logout" %}</a>
 | |
|                 </li>
 | |
|               {% else %}
 | |
|                 <li class="nav-item">
 | |
|                   <a id="sign-up-link" class="nav-link" href="{% url 'account_signup' %}">{% trans "Sign Up" %}</a>
 | |
|                 </li>
 | |
|                 <li class="nav-item">
 | |
|                   <a id="log-in-link" class="nav-link" href="{% url 'account_login' %}">{% trans "Log In" %}</a>
 | |
|                 </li>
 | |
|               {% endif %}
 | |
|             </ul>
 | |
|           </div>
 | |
|         </div>
 | |
|       </nav>
 | |
|     </div>
 | |
| 
 | |
|     <div class="container">
 | |
| 
 | |
|       {% if messages %}
 | |
|           {% for message in messages %}
 | |
|               <div class="alert {% if message.tags %}alert-{{ message.tags }}{% endif %}">{{ message }}</div>
 | |
|           {% endfor %}
 | |
|       {% endif %}
 | |
| 
 | |
|       {% block content %}
 | |
|         <p>Use this document as a way to quick start any new project.</p>
 | |
|       {% endblock content %}
 | |
| 
 | |
|     </div> <!-- /container -->
 | |
| 
 | |
|     {% block modal %}{% endblock modal %}
 | |
| 
 | |
|     <!-- Le javascript
 | |
|     ================================================== -->
 | |
|     <!-- Placed at the end of the document so the pages load faster -->
 | |
|     {% block javascript %}
 | |
|       <!-- Latest JQuery -->
 | |
|       <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
 | |
| 
 | |
|       <!-- Latest compiled and minified JavaScript -->
 | |
|       <script src="https://cdn.rawgit.com/twbs/bootstrap/v4-dev/dist/js/bootstrap.js"></script>
 | |
| 
 | |
|       <!-- Your stuff: Third-party javascript libraries go here -->
 | |
| 
 | |
|       <!-- place project specific Javascript in this file -->
 | |
|       <script src="{% static 'js/project.js' %}"></script>
 | |
|     {% endblock javascript %}
 | |
|   </body>
 | |
| </html>
 |