タイトルのすぐ後に「作成者と更新日付」が出るが、これが結構じゃま。出ないようにすることも出来るが、折角なのでページの最下に出すようにする。
ページはdocument_viewテンプレートで作成されているので、

  1. ZMIで/ploneサイト/portal_skins/plone_content/document_viewを開いて”customize”ボタンを押す。
    → /ploneサイト/portal_skins/custom/document_viewが出来る。
  2. 日付を生成している行を下に移す。
    日付を生成しているのは

    <div metal:use-macro="here/document_byline/macros/byline">
     Get the byline - contains details about author and modification date.
    </div>

    なので、この3行を

    <div metal:use-macro="here/document_relateditems/macros/relatedItems">
      show related items if they exist
    </div>
    
    <div metal:use-macro="here/document_byline/macros/byline">
      Get the byline - contains details about author and modification date.
    </div>
    
    </tal:main-macro>
    </metal:main>

    このように、ページの最後に移動する。

  3. 全てのページで最下に表示されるので良いのであれば、上記で完了。
    特定のページだけ最下に表示したいのであれば、このテンプレートを改名して”document_view_datetail”などとしておこう。
  4. 更に日付表示を右寄せにすれば、plone.orgのサイト風になる。