From c74e680ac0404277b9c7af5650ebe10c997e97ad Mon Sep 17 00:00:00 2001 From: Haakon Meland Eriksen Date: Tue, 24 Jun 2014 20:51:22 +0200 Subject: Removed docs that were not translated --- doc/nb-no/DerivedTheme1.md | 78 ---------------------------------------------- 1 file changed, 78 deletions(-) delete mode 100644 doc/nb-no/DerivedTheme1.md (limited to 'doc/nb-no/DerivedTheme1.md') diff --git a/doc/nb-no/DerivedTheme1.md b/doc/nb-no/DerivedTheme1.md deleted file mode 100644 index d20a958f2..000000000 --- a/doc/nb-no/DerivedTheme1.md +++ /dev/null @@ -1,78 +0,0 @@ -Creating a Derived Theme -======================== - -**Lesson 1** - -A derived theme takes most of the settings from its "parent" theme and lets you change a few things to your liking without creating an entire theme package. - - -To create a derived theme, first choose a name. For our example we'll call our theme 'mytheme'. Hopefully you'll be a bit more creative. But throughout this document, wherever you see 'mytheme', replace that with the name you chose. - -**Directory Structure** - -First you need to create a theme directory structure. We'll keep it simple. We need a php directory and a css directory. Here are the Unix/Linux commands to do this. Assume that 'mywebsite' is your top level Red Matrix folder. - - - cd mywebsite - mkdir view/theme/mytheme - mkdir view/theme/mytheme/css - mkdir view/theme/mytheme/php - - -Great. Now we need a couple of files. The first one is your theme info file, which describes the theme. - -It will be called view/theme/mytheme/php/theme.php (clever name huh?) - -Inside it, put the following information - edit as needed - - theme_info['extends'] = 'redbasic'; - - - } - - -Remember to rename the mytheme_init function with your theme name. In this case we will be extending the theme 'redbasic'. - - -Now create another file. We call this a PCSS file, but it's really a PHP file. - -The file is called view/theme/mytheme/php/style.php - -In it, put the following: - - Display Settings as their default theme. - - - \ No newline at end of file -- cgit v1.2.3