flags.html 457 B

12345678910111213141516171819202122
  1. <table class="table table-vcenter">
  2. <thead>
  3. <tr>
  4. <th class="w-1">Flag</th>
  5. <th>Name</th>
  6. <th class="w-1">Country code</th>
  7. <th>CSS class</th>
  8. </tr>
  9. </thead>
  10. <tbody>
  11. {% for flag in flags %}
  12. <tr>
  13. <td>
  14. <div class="flag flag-sm flag-country-{{ flag.flag }}"></div>
  15. </td>
  16. <td>{{ flag.name }}</td>
  17. <td><code>{{ flag.flag }}</code></td>
  18. <td><code>.flag-country-{{ flag.flag }}</code></td>
  19. </tr>
  20. {% endfor %}
  21. </tbody>
  22. </table>