1

追加のツールを必要とせずに Plone テーマを作成する方法を探しています。wordpress ユーザーとして、私はネイティブのサンバースト テーマを使用してそれを変更するつもりでした (ただし、子テーマではなく完全なテーマとして)。

たまごを作って、サンバーストのテーマからエッセンシャル*を抽出してみました。

* (ブラウザー フォルダーと configure.zcml の一部。[サイトの設定] > [テーマ] の選択の下に「mytheme」タグを付けるため)

何らかの理由でうまくいきませんでした。「アドオン」をアクティブ化できますが、他に何も起こりません..何かアイデアはありますか?

4

3 に答える 3

2

Plone 4.3 では、コントロール パネルに Diazo テクノロジを使用した Plone 内のテーマ エディタがあります。Sunburst を変更することはできませんが、インスピレーションとして使用できる Twitter Bootstrap に基づくサンプル テーマがあります。HTML と CSS に慣れていれば、あとは簡単にできるはずです。

そのコントロール パネルからも詳細なヘルプを利用できます。

于 2013-10-30T11:46:43.907 に答える
0

これは古い質問ですが、問題に対する私の最終的な解決策は次のとおりです。

[terminal-prompt]:src: ../bin/paster create -t   plone3_theme
Selected and implied templates:
    ZopeSkel#basic_namespace  A   basic Python project with a namespace package
    ZopeSkel#plone            A   project for Plone add-ons
    ZopeSkel#plone3_theme     A   theme for Plone 3

Enter project name: plonetheme.[project]
Variables:
    egg:      plonetheme.[project]
    package:  plonetheme[project]
    project:  plonetheme.[project]

Expert Mode? (What question mode would you like? (easy/expert/all)?) ['easy']: all
Namespace Package Name (Name of outer namespace package) ['plonetheme']:
Package Name (Name of the inner namespace package) ['[project]']:
Skin Name (Name of the theme (human facing, added to portal_skins)) ['']: [Project] Theme
Skin Base (Name of the theme from which this is copied) ['Plone Default']: [dependent on base theme]
Empty Styles? (Override default public stylesheets with empty ones?) [False]:
Include Documentation? (Include in-line documentation in generated code?) [True]:
Version (Version number for project) ['1.0']: 0.1.0
Description (One-line description of the project) ['An installable theme for Plone 3']: [description]
Register Profile (Should this package register a GS Profile) [True]:
Long Description (Multi-line description (in ReST)) ['']: [long description]
Author (Name of author for project) ['']: HSTS Web Development Center
Author Email (Email of author for project) ['']: support@example.com
Keywords (List of keywords, space-separated) ['web zope plone theme']:
Project URL (URL of the homepage for this project) ['http://svn.plone.org/svn/collective/']: http://www.example.com
Project License (Name of license for the project) ['GPL']:
Zip-Safe? (Can this project be used as a zipped egg? (true/false)) [False]:
Zope2 Product? (Are you creating a product for Zope2/Plone or an Archetypes Product?) [True]:

>>>ソース

于 2014-02-03T20:50:25.823 に答える