Skip to content

Instantly share code, notes, and snippets.

@mmtechslv
Created April 7, 2021 15:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mmtechslv/730ee5144aa3c152321b8bb44e7aec44 to your computer and use it in GitHub Desktop.
Save mmtechslv/730ee5144aa3c152321b8bb44e7aec44 to your computer and use it in GitHub Desktop.
Markdium-Introduction
<table border='1' style="width:100%; text-align:center">
<thead>
<tr>
<th> Name </th>
<th> Surname </th>
<th> Age </th>
</tr>
</thead>
<tbody>
{% for person in all_people %}
<tr>
<td> {{ person.name }} </td>
<td> {{ person.surname }} </td>
<td> {{ person.age }} </td>
</tr>
{% endfor %}
</tbody>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment