Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mmontone/djula

Common Lisp port of the Django templating language
https://github.com/mmontone/djula

common-lisp html-template lisp template-engine

Last synced: 2 months ago
JSON representation

Common Lisp port of the Django templating language

Awesome Lists containing this project

README

        

# Djula

[![Build Status](https://travis-ci.org/mmontone/djula.svg?branch=master)](https://travis-ci.org/mmontone/djula)
[![Quicklisp](http://quickdocs.org/badge/djula.svg)](http://quickdocs.org/djula/)
[![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE)

Djula is a port of Python's [Django](http://www.djangoproject.com) template engine to Common Lisp.

## Nutshell

Here a small example of a template::

```HTML+Django

{% extends "base.html" %}
{% block title %}Memberlist{% endblock %}
{% block content %}


{% 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 [documentation page](http://mmontone.github.io/djula/djula/).