{% extends "base.html" %} {% block content %}

This is list of sketches

{% for s in sketches %} {% set s_title = s.split("/")[-1].split(".")[0] %}
  • {{s_title}}
  • {% endfor %} {% endblock %}