Changeset 520
- Timestamp:
- 08/29/06 22:06:07 (2 years ago)
- Files:
-
- devel/_templates/Default_Template/pageshell (modified) (1 diff)
- devel/config-dist.php (modified) (1 diff)
- devel/lib/setup.php (modified) (1 diff)
- devel/lib/templates.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
devel/_templates/Default_Template/pageshell
r512 r520 14 14 <div id="logo"><!-- open div logo --> 15 15 <h1><a href="{{url}}">{{sitename}}</a></h1> 16 <h2> Personal Learning Landscape</h2>16 <h2>{{tagline}}</h2> 17 17 </div><!-- close div logo --> 18 18 <div id="global_menuoptions"><!-- open div global_menuoptions --> devel/config-dist.php
r509 r520 6 6 // i.e., define("system constant name", "your value"); 7 7 8 // Name of the site (eg Elgg, Apcala, University of Bogton's Learning Landscape, etc)8 // Name of the site (eg Elgg, Apcala, University of Bogton's Social Network, etc) 9 9 10 10 $CFG->sitename = 'My Elgg site'; 11 12 // A tagline for your site (eg 'Social network for Bogton') 13 14 $CFG->tagline = 'A social networking site'; 11 15 12 16 // External URL to the site (eg http://elgg.bogton.edu/) devel/lib/setup.php
r517 r520 27 27 // Set defaults for some variables 28 28 29 if (!isset($CFG->tagline)) { 30 $CFG->tagline = ""; 31 } 29 32 if (empty($CFG->debug)) { 30 33 $CFG->debug = 0; devel/lib/templates.php
r517 r520 1180 1180 break; 1181 1181 1182 case "tagline": 1183 return $CFG->tagline; 1184 break; 1185 1182 1186 case "metatags": 1183 1187 // $run_result = "<link href=\"/".$template_variable.".css\" rel=\"stylesheet\" type=\"text/css\" />";
