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.

110 lines
4.8 KiB

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. />
  14. <link rel="stylesheet" href="{% static 'css/forum.css' %}">
  15. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Swiper/4.3.3/css/swiper.min.css">
  16. <!-- favicon settings -->
  17. <link rel="apple-touch-icon" sizes="57x57" href="{% static 'images/favicons/apple-icon-57x57.png' %}">
  18. <link rel="apple-touch-icon" sizes="60x60" href="{% static 'images/favicons/apple-icon-60x60.png' %}">
  19. <link rel="apple-touch-icon" sizes="72x72" href="{% static 'images/favicons/apple-icon-72x72.png' %}">
  20. <link rel="apple-touch-icon" sizes="76x76" href="{% static 'images/favicons/apple-icon-76x76.png' %}">
  21. <link rel="apple-touch-icon" sizes="114x114" href="{% static 'images/favicons/apple-icon-114x114.png' %}">
  22. <link rel="apple-touch-icon" sizes="120x120" href="{% static 'images/favicons/apple-icon-120x120.png' %}">
  23. <link rel="apple-touch-icon" sizes="144x144" href="{% static 'images/favicons/apple-icon-144x144.png' %}">
  24. <link rel="apple-touch-icon" sizes="152x152" href="{% static 'images/favicons/apple-icon-152x152.png' %}">
  25. <link rel="apple-touch-icon" sizes="180x180" href="{% static 'images/favicons/apple-icon-180x180.png' %}">
  26. <link rel="icon" type="image/png" sizes="192x192" href="{% static 'images/favicons/android-icon-192x192.png' %}">
  27. <link rel="icon" type="image/png" sizes="32x32" href="{% static 'images/favicons/favicon-32x32.png' %}">
  28. <link rel="icon" type="image/png" sizes="96x96" href="{% static 'images/favicons/favicon-96x96.png' %}">
  29. <link rel="icon" type="image/png" sizes="16x16" href="{% static 'images/favicons/favicon-16x16.png' %}">
  30. <link rel="manifest" href="{% static 'images/favicons/manifest.json' %}">
  31. <meta name="msapplication-TileColor" content="#ffffff">
  32. <meta name="msapplication-TileImage" content="{% static 'images/favicons/ms-icon-144x144.png' %}">
  33. <meta name="theme-color" content="#ffffff">
  34. {% block header %}{% endblock %}
  35. </head>
  36. <body>
  37. <nav class="navbar has-shadow">
  38. <div class="container">
  39. <div class="navbar-brand">
  40. <a class="navbar-item" href="{% url 'index' %}">
  41. <img src="{% static 'images/logo.png' %}" width="32" height="32">
  42. <b>doccano</b>
  43. </a>
  44. {% block navigation %}{% endblock %}
  45. </div>
  46. <div id="topNav" class="navbar-menu">
  47. <div class="navbar-end">
  48. <a class="navbar-item" href="{% url 'index' %}">
  49. <span>Home</span>
  50. </a>
  51. <div class="navbar-item has-dropdown is-hoverable">
  52. <a class="navbar-link">
  53. <span>Live Demo</span>
  54. </a>
  55. <div class="navbar-dropdown">
  56. <a href="{% url 'demo-text-classification' %}" class="navbar-item">
  57. Sentiment Analysis
  58. </a>
  59. <a href="{% url 'demo-named-entity-recognition' %}" class="navbar-item">
  60. Named Entity Recognition
  61. </a>
  62. <a href="{% url 'demo-translation' %}" class="navbar-item">
  63. Translation
  64. </a>
  65. </div>
  66. </div>
  67. {% if user.is_authenticated %}
  68. <a class="navbar-item" href="{% url 'projects' %}">
  69. <span>Projects</span>
  70. </a>
  71. {% endif %}
  72. <!--<a class="navbar-item" href="hoge.html">Live Demo</a>-->
  73. <a class="navbar-item" href="https://github.com/chakki-works/doccano">
  74. <span>GitHub</span>
  75. </a>
  76. {% if not user.is_authenticated %}
  77. <a class="navbar-item" href="{% url 'login' %}">
  78. <span>Login</span>
  79. </a>
  80. {% else %}
  81. <a class="navbar-item" href="{% url 'logout' %}">
  82. <span>Logout</span>
  83. </a>
  84. {% endif %}
  85. </div>
  86. </div>
  87. </div>
  88. </nav>
  89. {% block content %}{% endblock %}
  90. {% block footer %}{% endblock %}
  91. <script src="https://cdnjs.cloudflare.com/ajax/libs/Swiper/4.3.3/js/swiper.min.js"></script>
  92. <script>
  93. var mySwiper = new Swiper('.swiper-container', {
  94. // Optional parameters
  95. loop: true,
  96. autoplay: {
  97. delay: 5000,
  98. },
  99. // Navigation arrows
  100. navigation: {
  101. nextEl: '.swiper-button-next',
  102. prevEl: '.swiper-button-prev',
  103. },
  104. })
  105. </script>
  106. </body>
  107. </html>