1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
# NanoBlogger Global Config File
# Last modified: 2007-01-04T14:47:26-05:00
### Misc. defaults ###
# Language default
NB_LANG="en"
# Set the default blog directory
#BLOG_DIR="/var/www/weblog"
### Blog Templates ###
# ALL templates must reside in the weblog's "templates" directory
# e.g. [blog_dir]/templates
CATEGORY_TEMPLATE="category_archive.htm"
MAIN_TEMPLATE="main_index.htm"
MAKEPAGE_TEMPLATE="makepage.htm"
YEAR_TEMPLATE="year_archive.htm"
MONTH_TEMPLATE="month_archive.htm"
DAY_TEMPLATE="day_archive.htm"
PERMALINK_TEMPLATE="permalink.htm"
MAINLINKS_TEMPLATE="main_links.htm"
ENTRY_TEMPLATE="entry.htm"
CATENTRY_TEMPLATE="category_entry.htm"
MONTHENTRY_TEMPLATE="month_entry.htm"
DAYENTRY_TEMPLATE="day_entry.htm"
PERMALINKENTRY_TEMPLATE="permalink_entry.htm"
METADATAFILE_TEMPLATE="file.metadata"
METADATAENTRY_TEMPLATE="entry.metadata"
### Data file defaults ###
# Set the default date command arguments used to create entry filenames
#DB_DATEARGS=""
# Set the default date format used to create and sort entry filenames
# WARNING: do _not_ change unless you *know* what you're doing!
# WARNING: changing this will probably break lib/query.sh
#DB_DATEFORMAT="%Y-%m-%dT%H_%M_%S"
|