new feature: add welcome message (configured in config file)
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@7 b3834d28-1941-0410-a4f8-b48e95affb8f
This commit is contained in:
parent
639d8e15db
commit
9cbba1119c
@ -39,6 +39,7 @@ $dbname = 'scuttle';
|
|||||||
# System Configuration
|
# System Configuration
|
||||||
#
|
#
|
||||||
# sitename: The name of this site.
|
# sitename: The name of this site.
|
||||||
|
# welcomeMessage: The welcome message (or tagline) of this site
|
||||||
# locale: The locale used.
|
# locale: The locale used.
|
||||||
# top_include: The header file.
|
# top_include: The header file.
|
||||||
# bottom_include: The footer file.
|
# bottom_include: The footer file.
|
||||||
@ -85,7 +86,8 @@ $dbname = 'scuttle';
|
|||||||
# reservedusers : An array of usernames that cannot be registered
|
# reservedusers : An array of usernames that cannot be registered
|
||||||
######################################################################
|
######################################################################
|
||||||
|
|
||||||
$sitename = 'Scuttle';
|
$sitename = 'SemanticScuttle';
|
||||||
|
$welcomeMessage = 'More than tags...';
|
||||||
$locale = 'en_GB';
|
$locale = 'en_GB';
|
||||||
$top_include = 'top.inc.php';
|
$top_include = 'top.inc.php';
|
||||||
$bottom_include = 'bottom.inc.php';
|
$bottom_include = 'bottom.inc.php';
|
||||||
|
@ -104,6 +104,10 @@ html > body div#header.popup h1 {
|
|||||||
background: url('logo_24.png') no-repeat 10px;
|
background: url('logo_24.png') no-repeat 10px;
|
||||||
padding: 0.5em 0.5em 0.5em 50px;
|
padding: 0.5em 0.5em 0.5em 50px;
|
||||||
}
|
}
|
||||||
|
html > body div#header #welcome {
|
||||||
|
position:absolute;
|
||||||
|
left:75px;
|
||||||
|
}
|
||||||
h1 a {
|
h1 a {
|
||||||
color: #000;
|
color: #000;
|
||||||
}
|
}
|
||||||
|
@ -32,6 +32,7 @@ if(isset($_GET['popup'])) {
|
|||||||
$this->includeTemplate('toolbar.inc');
|
$this->includeTemplate('toolbar.inc');
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
<span id="welcome"><?php echo $GLOBALS['welcomeMessage'];?></span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
|
Loading…
Reference in New Issue
Block a user