templates/components/todos.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block stylesheets %}
  3.     <link rel="stylesheet"  href="{{ asset('styles/todojs.min.css') }}">
  4. {% endblock %}
  5. {% block title %} TODOS {% endblock %}
  6. {% block body %}
  7. <div class="mo-content">
  8.     <div class="app-todos">
  9.         <h2 class="mo-ft-weight-bold">Todo Simple</h2>
  10.         <form action="" method="post">
  11.             <input type="text" name="todo" />
  12.             <button class="fas fa-plus"></button>
  13.         </form>
  14.         <ul class="todolist"></ul>
  15.         <div class="todotasks"></div>
  16.     </div>
  17.      <div class="mo-fx-d mo-my-2 mo-fx-content-evenly mo-ga-2">
  18.         <div class="mo-p-1 mo-fx-item-1 mo-bg-dark">
  19.             <h3 class="mo-txt-light mo-align-txt-center"> ReactJs</h3>
  20.             <div class="mo-fx-d">
  21.                 <a class="mo-btn mo-btn-default mo-p-1 mo-mt-1" href="https://github.com/manzowa/todots">
  22.                 <i class="fas fa-sign-in-alt"></i>&nbsp;Aller vers Github</a>
  23.             </div>
  24.         </div>
  25.         <div class="mo-p-1 mo-fx-item-1  mo-bg-rx">
  26.             <h3 class="mo-txt-light mo-align-txt-center"> RxJS</h3>
  27.             <div class="mo-fx-d">
  28.                 <a class="mo-btn mo-btn-default mo-p-1  mo-mt-1" href="https://github.com/manzowa/todots">
  29.                     <i class="fas fa-sign-in-alt"></i>&nbsp;Aller vers Github</a>
  30.             </div>
  31.         </div>
  32.         <div class="mo-p-1 mo-fx-item-1 mo-bg-primary">
  33.             <h3 class="mo-txt-light mo-align-txt-center">TypeScript</h3>
  34.             <div class="mo-fx-d">
  35.                 <a class="mo-btn mo-btn-default mo-p-1  mo-mt-1" href="https://github.com/manzowa/todots"  target="_blank">
  36.                     <i class="fas fa-sign-in-alt"></i>&nbsp;Aller vers Github</a>
  37.             </div>
  38.         </div>
  39.     </div>
  40. </div>
  41. {% endblock %}
  42. {% block javascripts %}
  43.    <script src="{{ asset('scripts/todojs.js') }}"></script>
  44. {% endblock %}