Created
April 7, 2021 15:48
-
-
Save mmtechslv/730ee5144aa3c152321b8bb44e7aec44 to your computer and use it in GitHub Desktop.
Markdium-Introduction
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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