{% extends "base.html" %}
{% load aym %}
{% block content %}
{% for image in images %}
{% endfor %}
{% markdown %}
This is **some content** written in *Markdown*!
>> Isn't that awesome?
{% endmarkdown %}
{% syntax python %}
def add(a,b):
return a * b
x = add(10, 20)
{% endsyntax %}
{% syntax objc %}
[myList addObject:[NSNumber numberWithInt:15]];
return myList;
{% endsyntax %}
{% endblock %}