Skip to content

Instantly share code, notes, and snippets.

@N3MIS15
Created November 4, 2012 23:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save N3MIS15/4014312 to your computer and use it in GitHub Desktop.
Save N3MIS15/4014312 to your computer and use it in GitHub Desktop.
macro example
{% macro inline(title, href, img) %}
<div class="inline">
<a href="{{href}}" target="_blank">
<img title="{{title}}" src="{{img}}" height="40" width="40" alt="{{title}}">
<p style="font-size:75%;">{{title}}</p>
</a>
</div>
{% endmacro %}
{{ inline('SabNZBd+', 'http://www.sabnzbd.org', url_for('static', filename='images/applications/SabNZBd.png')) }}
{{ inline('Sickbeard', 'http://www.sickbeard.com', url_for('static', filename='images/applications/Sickbeard.png')) }}
{{ inline('CouchPotato', 'http://www.couchpota.to', url_for('static', filename='images/applications/CouchPotato.png')) }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment