diff --git a/browser/configure.zcml b/browser/configure.zcml
index eee54d2..3c7c653 100644
--- a/browser/configure.zcml
+++ b/browser/configure.zcml
@@ -664,4 +664,6 @@
provides="cybertools.browser.configurator.IViewConfigurator"
/>
+
+
diff --git a/browser/skin/__init__.py b/browser/skin/__init__.py
new file mode 100644
index 0000000..4bc90fb
--- /dev/null
+++ b/browser/skin/__init__.py
@@ -0,0 +1,4 @@
+"""
+$Id$
+"""
+
diff --git a/browser/skin/body.pt b/browser/skin/body.pt
new file mode 100644
index 0000000..f0bc271
--- /dev/null
+++ b/browser/skin/body.pt
@@ -0,0 +1,20 @@
+
+
+
diff --git a/browser/skin/browser.py b/browser/skin/browser.py
new file mode 100644
index 0000000..de4f24f
--- /dev/null
+++ b/browser/skin/browser.py
@@ -0,0 +1,31 @@
+#
+# Copyright (c) 2006 Helmut Merz helmutm@cy55.de
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+#
+
+"""
+Dummy view class for providing the body template.
+
+$Id$
+"""
+
+from cybertools.browser.view import UnboundTemplateFile
+
+
+class View(object):
+
+ bodyTemplate = UnboundTemplateFile('body.pt')
+
diff --git a/browser/skin/configure.zcml b/browser/skin/configure.zcml
new file mode 100644
index 0000000..f067dcf
--- /dev/null
+++ b/browser/skin/configure.zcml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/browser/skin/custom.css b/browser/skin/custom.css
new file mode 100644
index 0000000..0dc2661
--- /dev/null
+++ b/browser/skin/custom.css
@@ -0,0 +1,20 @@
+/*
+ $Id$
+
+*/
+
+body {
+ color: #242424;
+}
+
+a {
+ text-decoration: none;
+ color: #344080;
+ background-color: transparent;
+}
+
+.top {
+ border-bottom: 1px solid #d0d0d0;
+ padding: 2px 0 2px 5px;
+}
+
diff --git a/browser/skin/loops_favicon.png b/browser/skin/loops_favicon.png
new file mode 100644
index 0000000..1fc7485
Binary files /dev/null and b/browser/skin/loops_favicon.png differ
diff --git a/browser/skin/loops_logo.png b/browser/skin/loops_logo.png
new file mode 100644
index 0000000..15123ab
Binary files /dev/null and b/browser/skin/loops_logo.png differ