Skip to content

Instantly share code, notes, and snippets.

@fabe
fabe / tools.md
Last active November 4, 2015 17:33
@fabe
fabe / print_file.py
Last active November 4, 2015 17:34
Cactus plugin: easy including of CSS inside HTML (faster for smaller sites).
import sys
from cactus.template_tags import register
# Easy including of CSS inside HTML (faster for smaller sites).
# Usage: {% print_file "path/to/stylesheet.css" %}
@register.simple_tag
def print_file(path):
try:
file = open(path).read().decode()