The Wayback Machine - https://web.archive.org/web/20200916214934/https://github.com/mmontone/djula
Skip to content
master
Go to file
Code
This branch is 278 commits ahead of nallen05:master.

README.md

Djula

Build Status Quicklisp MIT License

Djula is a port of Python's Django template engine to Common Lisp.

Nutshell

Here a small example of a template::

    {% extends "base.html" %}
    {% block title %}Memberlist{% endblock %}
    {% block content %}
      <ul>
      {% for user in users %}
        <li><a href="{{ user.url }}">{{ user.username }}</a></li>
      {% endfor %}
      </ul>
    {% endblock %}

Philosophy

Application logic is for the controller but don't try to make the life for the template designer too hard by giving him too few functionality.

For more information visit the new Djula webpage and documentation.

About

Common Lisp port of the Django templating language

Topics

Resources

License

Releases

No releases published

Packages

No packages published
You can’t perform that action at this time.