|
Revision 74, 0.9 kB
(checked in by jdixon, 1 year ago)
|
move template html files into themes
|
| Line | |
|---|
| 1 |
|
|---|
| 2 |
# Blogsum |
|---|
| 3 |
# Copyright (c) 2009 Jason Dixon <jason@dixongroup.net> |
|---|
| 4 |
# All rights reserved. |
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
########################### |
|---|
| 8 |
# pragmas # |
|---|
| 9 |
########################### |
|---|
| 10 |
package Blogsum::Config; |
|---|
| 11 |
use strict; |
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
########################### |
|---|
| 15 |
# user options # |
|---|
| 16 |
########################### |
|---|
| 17 |
our $database = 'data/site.db'; |
|---|
| 18 |
our $blog_theme = 'default'; |
|---|
| 19 |
our $blog_title = 'example.com'; |
|---|
| 20 |
our $blog_subtitle = 'My New Blog'; |
|---|
| 21 |
our $blog_url = 'http://www.example.com/'; |
|---|
| 22 |
our $blog_owner = 'user@example.com'; |
|---|
| 23 |
our $blog_rights = 'Copyright 2009, Example User'; |
|---|
| 24 |
our $feed_updates = 'hourly'; |
|---|
| 25 |
our $captcha_pubkey = ''; |
|---|
| 26 |
our $captcha_seckey = ''; |
|---|
| 27 |
our $comment_max_length = '1000'; |
|---|
| 28 |
our $comments_allowed = 0; |
|---|
| 29 |
our $smtp_server = 'localhost:25'; |
|---|
| 30 |
our $smtp_sender = 'blogsum@example.com'; |
|---|
| 31 |
our $articles_per_page = '10'; |
|---|
| 32 |
our $google_analytics_id = ''; |
|---|
| 33 |
our $google_webmaster_id = ''; |
|---|
| 34 |
|
|---|
| 35 |
1; |
|---|
| 36 |
|
|---|