reorganize plugins by plugin
[unfold.git] / plugins / tabs / tabs.py
diff --git a/plugins/tabs/tabs.py b/plugins/tabs/tabs.py
new file mode 100644 (file)
index 0000000..d487eec
--- /dev/null
@@ -0,0 +1,12 @@
+from engine.composite import Composite
+
+class Tabs (Composite):
+    
+    def requirements (self):
+        return { 'js_files'     : 'js/bootstrap.js',
+                 'css_files'    : ['css/bootstrap.css', 'css/tabs.css', ] 
+                 }
+
+    def template_file (self):
+        return "tabs.html"
+