diff options
author | Teddy Wing | 2014-04-20 20:11:19 -0400 |
---|---|---|
committer | Teddy Wing | 2014-04-20 20:11:52 -0400 |
commit | 482262ac7efc9ee0064eb0d4df6648772ef9c3f7 (patch) | |
tree | bd4b3a6bb6d0d338782ea5d0d7dc637213a2f3d0 | |
parent | 250eb7e2aa7453b384b32cc39be58b764fd550b8 (diff) | |
download | django-sneak-peek-482262ac7efc9ee0064eb0d4df6648772ef9c3f7.tar.bz2 |
Add sneak-peek CSS file to example project base.html
-rw-r--r-- | examples/djangoproject/djangoproject/templates/base.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/djangoproject/djangoproject/templates/base.html b/examples/djangoproject/djangoproject/templates/base.html index 5611973..64cb1b4 100644 --- a/examples/djangoproject/djangoproject/templates/base.html +++ b/examples/djangoproject/djangoproject/templates/base.html @@ -5,6 +5,8 @@ <meta http-equiv="content-type" content="text/html;charset=UTF-8" /> <meta charset="utf-8"> <title>Sneak Peek Example</title> + + <link rel="stylesheet" type="text/css" href="{{STATIC_URL}}sneak_peek_tag/css/django-sneak-peek.css" /> </head> <body> <header>Sneak Peek Example</header> |