-
Notifications
You must be signed in to change notification settings - Fork 25
Themes
hrabbit edited this page Sep 12, 2010
·
7 revisions
Themes change the visual appearance of your Chyrp installation. They use the very powerful Twig templating engine, custom-built for Chyrp.
Themes can not act like Modules or Feathers by responding to Triggers, and can not execute any PHP code. They can, however, call functions from within the Twig engine.
The common structure of a theme is:
-
stardust [the main theme folder]
- content [folder]
- comment.twig [template for comments]
- post.twig [template for post loop]
- sidebar.twig [template for the sidebar]
- feathers [folder]
- text.twig [template for all posts written as text, when you install new feathers their twigs will show up here]
- forms [folder]
- comment [folder]
- new.twig [template for writing a new comment]
- post [folder]
- edit.twig [template for editing a post ]
- user [folder]
- controls.twig [template for the ‘profile’-page, where users can edit there info ]
- login.twig [template for the login page ]
- lost_password.twig [template for the lost password page ]
- register.twig [template for the register page ]
- comment [folder]
- images [folder]
- javascripts [folder]
- theme.js.php
- layouts [folder]
- default.twig [template for the index page ]
- locale [folder]
- en_US.po [language files (English in this case) ]
- pages [folder]
- 404.twig [template for 404 page ]
- archive.twig [template for archive page ]
- drafts.twig [template for drafts page ]
- feather.twig
- index.twig
- page.twig [template for a page ]
- search.twig [template for search page ]
- __view.twig_
- stylesheets [folder]
- print.css [stylesheet used for printing ]
- screen.css [stylesheet used for screen display ]
- info.yaml [some info about the theme for use on backend > extend > themes ]
- screenshot.png [a screenshot for use on backend > extend > themes ]
- content [folder]