";
// This is not displayed anywhere on the site, but instead is
// used when securely hashing passwords (so that the same password, if
// used on two different sites with different $siteShortName settings,
// will have different hashes in the database).
$siteShortName = "sidNews";
// For standard displays (lists of posts), you call seedBlogs from
// within your web page, so the surrounding HTML is under your full control.
// However, some pages (such as the edit forms and the full story displays)
// are generated by seedBlogs in response to user actions. To customize
// the layout of these pages, you must provide header and footer files.
// inserted at the top of every page generated by seedBlogs
$header = "header.php";
// inserted at the end of every page generated by seedBlogs
$footer = "footer.php";
// These are used to format stories in both list displays and full-story
// displays.
// The default settings are specified below, but they can be overridden
// for a given list display if you call the "advanced" seedBlog interface
// function (seedBlogFormatted).
// However, these default settings will always be used in full-story displays,
// archive list displays, and comment list displays.
// HTML used to open/close each story block (only used in story lists that
// display intro text for each story)
$storyBlockFormatOpen = "
";
$storyBlockFormatClose = " |
";
// HTML used to format headlines when intro text is shown
$headlineFormatOpen = "";
$headlineFormatClose = "";
// HTML used to open/close the text below each headline
// this block of text includes:
// admin widgets, intro text, Read more link, and comment widget
$textBlockFormatOpen = "";
$textBlockFormatClose = " |
";
// HTML used to open/close each story block (for lists where intro text
// is hidden)
$linkStoryBlockFormatOpen =
"-- | ";
$linkStoryBlockFormatClose = " |
";
// HTML used to format link-only headlines (for lists where intro text
// is hidden). These format strings are inserted *inside* the HTML link tags.
// Thus, they can be used to change the color of the link text.
$linkHeadlineFormatOpen = "";
$linkHeadlineFormatClose = "";
// HTML to insert between each story in a story list when intro text is shown
$storySeparator = "
";
// HTML to insert between each headline link when intro text is hidden
$linkStorySeparator = "";
// used around the list of comments (shown at the bottom of the story display)
// comment lists are formatted as a seedBlog using the default formatting
// settings specified above
$commentListOpen = "
Comments
";
$commentListClose = "";
// End of all settings
?>