Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas ZILLIOX <thomas@zilliox.me>2013-08-13 15:20:43 +0400
committerThomas ZILLIOX <thomas@zilliox.me>2013-08-13 15:20:43 +0400
commit1a539dcc16ac445cad25ba66ae684428a244f646 (patch)
treef9269a7e354033147e36ddbfbd90d54460a73766 /plugins/PleineLune
parent69e0789dfd3e5a9bb8ca6a8bff8a8111553e93e7 (diff)
Remove the tags to replace names from the theme tutorial
Diffstat (limited to 'plugins/PleineLune')
-rw-r--r--plugins/PleineLune/README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/PleineLune/README.md b/plugins/PleineLune/README.md
index 596226e525..8898cf9596 100644
--- a/plugins/PleineLune/README.md
+++ b/plugins/PleineLune/README.md
@@ -57,13 +57,13 @@ How to theme
Images
----------
-You can stock your images in the folder "plugins/&lt;yourPluginName>/images".
+You can stock your images in the folder "plugins/YourPluginName/images".
To use images in CSS, you have to use a relative path that start at the root folder.
Example:
```css
- background-image: url(plugins/<yourPluginName>/images/dropDown.jpg);
+ background-image: url(plugins/YourPluginName/images/dropDown.jpg);
```
Multiple stylesheets files
@@ -74,7 +74,7 @@ But you can import other Less files from the main theme file:
Example:
```css
- @import "../../plugins/<yourPluginName>/stylesheets/_<yourSubStylesheetName>.less"
+ @import "../../plugins/YourPluginName/stylesheets/_yourSubStylesheetName.less"
```
It's important to use this complex path to prevent compilation bugs.