repos

blog.bythewood.me-wagtail

mirror archived upstream

Self-hostable blog for developers built on Wagtail and Django, with webpack, Bootstrap, and CodeMirror.

blogbootstrapdjangodockerhandcodedpythonself-hostedwagtailwebpack

223 B · 10 lines · Python Raw History
1from django.shortcuts import render
2
3
4def favicon(request):
5    return render(request, 'favicon.svg', content_type="image/svg+xml")
6
7
8def robots(request):
9    return render(request, 'robots.txt', content_type='text/plain')