diff options
author | Struan Donald <struan@exo.org.uk> | 2012-02-09 11:07:31 +0000 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2012-02-09 11:07:31 +0000 |
commit | 9f3081242f82d15b092d10f8542ca0da849bc0e9 (patch) | |
tree | 5ecea79c6cbea7944bfca0f886829ba6d4c4918a | |
parent | 2859ce67579fc2f3cf421ba665a335919992b5a8 (diff) |
change L< to C< for paths to prevent broken links
-rw-r--r-- | notes/customisation.pod | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/notes/customisation.pod b/notes/customisation.pod index 500064915..04bfb6e1d 100644 --- a/notes/customisation.pod +++ b/notes/customisation.pod @@ -28,27 +28,27 @@ The default Cobrand is called Default. Templates are found in the templates directory. Within that there are seperate directories for web templates and email templates. Under each of these there is a directory for each Cobrand. In our FixMyPark example -this would be L<templates/web/fixmypark> for the web templates and -L<templates/email/fixmypark> for the email templates. +this would be C<templates/web/fixmypark> for the web templates and +C<templates/email/fixmypark> for the email templates. The full set of templates is stored in the default Cobrand and if no equivalent template is found in a Cobrand directory FixMyStreet will use the default template. At a bare minimum you will probably want to copy the header and footer -web templates found in L<templates/web/default/header.html> and -L<templates/web/default/footer.html> into your Cobrand and make appropriate +web templates found in C<templates/web/default/header.html> and +C<templates/web/default/footer.html> into your Cobrand and make appropriate changes. The other template you should make your own version of is the FAQ which -is in L<templates/web/default/faq-en-gb.html> +is in C<templates/web/default/faq-en-gb.html> =head1 CSS The CSS is stored in web/css/ under which there are directories for Cobrands but this is only by custom. The loading of the css is controled by the header templates. Note that FixMyStreet uses sccs files to generate our CSS so by there -are no CSS files until L<bin/make_css> has been run. +are no CSS files until C<bin/make_css> has been run. The CSS provided with FixMyStreet uses CSS3 media queries in order to adapt the layout to work on different devices. @@ -72,7 +72,7 @@ This contains the CSS for the header and footer as well as the colour scheme. Much of the rest of the customisation takes place in the Cobrand modules. These are automatically loaded according to the current Cobrand and can be found in -L<perllib/FixMyStreet/Cobrands/>. There is a default Cobrand ( Default.pm ) which +C<perllib/FixMyStreet/Cobrands/>. There is a default Cobrand ( Default.pm ) which all Cobrands should inherit from. A Cobrand module can then override any of the methods from the default Cobrand. |