diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-05-03 09:49:56 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-05-03 09:49:56 -0500 |
commit | 8ac897c3b6834120eeaec6e8cd1646032b1b3739 (patch) | |
tree | 3df6ea0b626f7eddee0da7c758b8a8e7238ff0f4 | |
parent | 3dca2776a63886adcaac4bde188fb9ec8e74cfe2 (diff) | |
download | mediagoblin-8ac897c3b6834120eeaec6e8cd1646032b1b3739.tar.lz mediagoblin-8ac897c3b6834120eeaec6e8cd1646032b1b3739.tar.xz mediagoblin-8ac897c3b6834120eeaec6e8cd1646032b1b3739.zip |
Add the base.css and reference it so other people can start working on it :)
-rw-r--r-- | mediagoblin/static/css/base.css | 1 | ||||
-rw-r--r-- | mediagoblin/templates/mediagoblin/base.html | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/mediagoblin/static/css/base.css b/mediagoblin/static/css/base.css new file mode 100644 index 00000000..93b0b1a2 --- /dev/null +++ b/mediagoblin/static/css/base.css @@ -0,0 +1 @@ +/* stuff goes here :) */
\ No newline at end of file diff --git a/mediagoblin/templates/mediagoblin/base.html b/mediagoblin/templates/mediagoblin/base.html index 01c68258..71c2e550 100644 --- a/mediagoblin/templates/mediagoblin/base.html +++ b/mediagoblin/templates/mediagoblin/base.html @@ -18,8 +18,8 @@ <html> <head> <title>{% block title %}MediaGoblin{% endblock title %}</title> - {# <link rel="stylesheet" type="text/css" - href="{{ request.staticdirect('/css/base.css') }}"/> #} + <link rel="stylesheet" type="text/css" + href="{{ request.staticdirect('/css/base.css') }}"/> </head> <body> |