Last active
June 6, 2020 23:36
-
-
Save pigeonflight/d7e391c23322a4af8e5a3a75a5ac74f1 to your computer and use it in GitHub Desktop.
Demo of a portlets xml that adds a Static portlet to Plone
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<!-- locate this file under profiles/default/portlets.xml --> | |
<portlets> | |
<assignment name="proof-of-concept" category="context" key="/" | |
manager="plone.rightcolumn" type="plone.portlet.static.Static" | |
visible="True"> | |
<property | |
name="text">Stuff to show in your proof of concept portlet</property> | |
<property name="more_url"/> | |
<property name="footer"/> | |
<property name="header">Proof of Concept</property> | |
<property name="omit_border">False</property> | |
</assignment> | |
</portlets> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment