--- a/src/source/howto-skin.rst Tue Jun 05 12:05:59 2018 +0200
+++ b/src/source/howto-skin.rst Tue Jun 05 15:10:27 2018 +0200
@@ -1,8 +1,8 @@
.. _skinhowto:
-How to create a new skin?
-=========================
+How to create Skin?
+===================
A Skin is a tagging interface for associating media, javascript and CSS resources to a **renderer**
@@ -62,8 +62,11 @@
class CustomSkinResourcesAdapter(ContextRequestViewAdapter):
"""Custom skin resources adapter"""
- def get_resources(self):
- mycms.need()
+ def get_resources(self):
+ mycms.need()
+
+
+We have defined a Multiadapter with context=(context, request, view).
.. note::