You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

78 lines
3.0 KiB

6 years ago
6 years ago
6 years ago
6 years ago
  1. {% load static %}
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5. <meta charset="utf-8">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <meta name="viewport" content="width=device-width, initial-scale=1">
  8. <title>doccano - Document Annotation Tool</title>
  9. <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp"
  10. crossorigin="anonymous">
  11. <link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,700" rel="stylesheet">
  12. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.1/css/bulma.min.css" crossorigin="anonymous" />
  13. <link rel="stylesheet" type="text/css" href="{% static 'css/forum.css' %}">
  14. <script src="https://cdn.jsdelivr.net/npm/vue@2.5.16/dist/vue.js"></script>
  15. <script src="https://unpkg.com/axios/dist/axios.min.js"></script>
  16. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Swiper/4.3.3/css/swiper.min.css">
  17. {% block header %}{% endblock %}
  18. </head>
  19. <body>
  20. <nav class="navbar has-shadow">
  21. <div class="container">
  22. <div class="navbar-brand">
  23. <a class="navbar-item" href="{% url 'index' %}">
  24. <img src="{% static 'images/logo.png' %}" width="32" height="32">
  25. <b>doccano</b>
  26. </a>
  27. </div>
  28. <div id="topNav" class="navbar-menu">
  29. <div class="navbar-end">
  30. <a class="navbar-item" href="{% url 'index' %}">
  31. <span>Home</span>
  32. </a>
  33. {% if user.is_authenticated %}
  34. <a class="navbar-item" href="{% url 'projects' %}">
  35. <span>Projects</span>
  36. </a>
  37. {% endif %}
  38. <!--<a class="navbar-item" href="hoge.html">Live Demo</a>-->
  39. <a class="navbar-item" href="https://github.com/chakki-works/doccano">
  40. <span>GitHub</span>
  41. </a>
  42. {% if not user.is_authenticated %}
  43. <a class="navbar-item" href="{% url 'login' %}">
  44. <span>Login</span>
  45. </a>
  46. {% else %}
  47. <a class="navbar-item" href="{% url 'logout' %}">
  48. <span>Logout</span>
  49. </a>
  50. {% endif %}
  51. </div>
  52. </div>
  53. </div>
  54. </nav>
  55. {% block content %} {% endblock %}
  56. {% block footer %}{% endblock %}
  57. <script src="https://cdnjs.cloudflare.com/ajax/libs/Swiper/4.3.3/js/swiper.min.js"></script>
  58. <script>
  59. var mySwiper = new Swiper ('.swiper-container', {
  60. // Optional parameters
  61. loop: true,
  62. autoplay: {
  63. delay: 5000,
  64. },
  65. // Navigation arrows
  66. navigation: {
  67. nextEl: '.swiper-button-next',
  68. prevEl: '.swiper-button-prev',
  69. },
  70. })
  71. </script>
  72. </body>
  73. </html>