Files @ 32dd831a5056
Branch filter:

Location: website/www/conservancy/apps/contractpatch/views.py

bsturmfels
First-pass implementation of new design for home page.

Uses a combination of CSS changes and Tachyons classes to implement the design.

Adds the non-minified Tachyons CSS library itself and SVG icons from Font Awesome.
from conservancy import render_template_with_context
from conservancy.apps.blog.models import Entry as BlogEntry
from datetime import datetime

def index(request):
    filters = {
        'pub_date__lte': datetime.now(),
        'tags__slug': 'ContractPatch',
    }
    context = {
        'blog_entries': BlogEntry.objects.filter(**filters)[:3],
    }
    return render_template_with_context(request, "contractpatch/index.html", context)