src/pyams_template/interfaces/__init__.py
changeset 15 c3d0112a61f6
parent 14 b1ad46aa2d16
child 16 ac179d1bfc0b
--- a/src/pyams_template/interfaces/__init__.py	Mon Nov 25 15:46:23 2019 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,33 +0,0 @@
-#
-# Copyright (c) 2008-2015 Thierry Florac <tflorac AT ulthar.net>
-# All Rights Reserved.
-#
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
-# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE.
-#
-
-__docformat__ = 'restructuredtext'
-
-
-# import standard packages
-
-# import interfaces
-from zope.interface import Interface
-
-# import packages
-
-
-class IPageTemplate(Interface):
-    """Base page template interface"""
-
-
-class ILayoutTemplate(IPageTemplate):
-    """A template used for render the layout."""
-
-
-class IContentTemplate(IPageTemplate):
-    """A template used for render the content."""