From e361ae7bd4aae66214c3c2bff77204e559e299ff Mon Sep 17 00:00:00 2001 From: jared-brown Date: Tue, 10 Jun 2014 11:00:06 -0700 Subject: [PATCH] Fix directory trees in theming tutorial --- doc/theming/css.rst | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/doc/theming/css.rst b/doc/theming/css.rst index 0274f6eba70..586e026e119 100644 --- a/doc/theming/css.rst +++ b/doc/theming/css.rst @@ -27,8 +27,10 @@ Extensions can add their own CSS files to modify or extend CKAN's default CSS. Create an ``example_theme.css`` file in your extension's ``public`` directory:: ckanext-example_theme/ - public/ - example_theme.css + ckanext/ + example_theme/ + public/ + example_theme.css Add this CSS into the ``example_theme.css`` file, to change the color of CKAN's "account masthead" (the bar across the top of the site that shows the logged-in @@ -46,8 +48,10 @@ we include a CSS file in this base template then the file will be included in every page of your CKAN site. Create the file:: ckanext-example_theme/ - templates/ - base.html + ckanext/ + example_theme/ + templates/ + base.html and put this Jinja code in it: