hy/site/templates/index.html

12 lines
197 B
HTML
Raw Normal View History

2013-03-10 04:54:29 +01:00
{% extends "base.html" %}
{% block title %}Welcome!{% endblock %}
{% block content %}
2013-03-10 17:59:16 +01:00
{% autoescape off %}{% code "clojure" %}
(print "foo bar")
{% endcode %}{% endautoescape %}
2013-03-10 04:54:29 +01:00
{% endblock %}