Theme.pm 475 B

123456789101112131415161718192021
  1. package Theme;
  2. use strict;
  3. use warnings;
  4. no warnings 'experimental';
  5. use feature qw{signatures};
  6. # An example of the bare minimum your themes' routes.pm need.
  7. # Copy and alter things below as needed.
  8. our $default_title = 'tCMS';
  9. our $default_image = 'img/icon/favicon-48.png';
  10. our $display_name = 'tCMS';
  11. our $description = 'tCMS is a content management system written in perl.';
  12. our $default_tags = 'tcms';
  13. our $twitter_account = '';
  14. our $fb_app_id = '';
  15. 1;