butterscotchstallion / limnoria-plugins

A smattering of Limnoria plugins I've written
MIT License
14 stars 14 forks source link

SpiffyTitles: migrate templates to Jinja2 #26

Closed butterscotchstallion closed 9 years ago

butterscotchstallion commented 9 years ago

Replacing the templates used now with Jinja would allow logic in templates, which could solve the following use case:

Example template: ^ You know what time it is? :: $type $widthx$height $file_size :: $view_count views :: $nsfw

Jinja2 example:

^ {% if title %}{{title}} :: {% endif %} image/jpeg 500x667 63.3KiB :: {{views}} views :: {% if nsfw is null %}not sure if nsfw{% endif %}{%if nsfw is True %}not safe for work{% endif %}{%if nsfw is False %}safe for work{% endif %}