Skip to content

Instantly share code, notes, and snippets.

@UlisesAlexanderAM
Created November 11, 2022 21:51
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
<!DOCTYPE html>
<html lang="en">
<head>
<title>My cat facts list</title>
</head>
<body>
<h1>My cat facts list</h1>
<ul id="list">
{% for item in list %}
<li>{{ item }}</li>
{% endfor %}
</ul>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment