hy/site/templates/index.html
Paul R. Tagliamonte f170721378 removing a comment
2013-03-10 15:40:23 -04:00

27 lines
617 B
HTML

{% extends "base.html" %}
{% block title %}Welcome!{% endblock %}
{% block content %}
{# {% autoescape off %}{% code "clojure" %}
(print "foo bar")
{% endcode %}{% endautoescape %} #}
<div id = 'popshim' >
<div class = 'popover' >
<div class = 'focus' >
<div class = 'repl' >
<textarea id = 'repl-input' class = 'repl-pane repl-left' >
(defn hello-world [who] (print (.join ", " ["Hello" who])))
(hello-world "Paul")
; Hello, Paul!
</textarea>
<pre id = 'repl-output' class = 'repl-pane repl-right' ></pre>
</div>
</div>
</div>
{% endblock %}