socials.html 401 B

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