-label = _("Custom Footer Mode"),
-help_text = _("How your custom footer will appear."),
-widget=RadioSelect,
-choices=CUSTOM_FOOTER_MODE_CHOICES,
-required=False))
\ No newline at end of file
+ label = _("Custom Footer Mode"),
+ help_text = _("How your custom footer will appear."),
+ widget=RadioSelect,
+ choices=CUSTOM_FOOTER_MODE_CHOICES,
+ required=False))
+
+HEAD_SET = SettingSet('head', '<head>', "Define some custom elements to include in the head section of every page.",
+ 2000, can_preview=True)
+
+USE_CUSTOM_HEAD = Setting('USE_CUSTOM_HEAD', False, HEAD_SET, dict(
+ label = _("Use custom Head elements"),
+ help_text = _("Do you want to use custom head elements."),
+ required=False))
+
+CUSTOM_HEAD = Setting('CUSTOM_HEAD', '', HEAD_SET, dict(
+ label = _("Custom Head"),
+ help_text = _("Your custom Head elements."),
+ widget=Textarea(attrs={'rows': '25'}),
+ required=False))
\ No newline at end of file