Changeset 106
- Timestamp:
- 10/26/05 16:58:31 (3 years ago)
- Files:
-
- tags/0.6RC/src/lyceum/portal.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
tags/0.6RC/src/lyceum/portal.php
r105 r106 1 1 <?php 2 //require('./wp-config.php'); 3 //define('WP_USE_THEMES', true); 2 define('WP_USE_THEMES', true); 4 3 $blog=0; 5 4 require('wp-config.php'); 5 ?> 6 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 7 <html> 8 <head> 9 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> 10 <title>Lyceum</title> 11 12 <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" /> 13 14 <style type="text/css" media="screen"> 15 body { background: url("<?php bloginfo('stylesheet_directory'); ?>/images/kubrickbgcolor.jpg"); } 16 #page { background: url("<?php bloginfo('stylesheet_directory'); ?>/images/kubrickbg.jpg") repeat-y top; border: none; } 17 #header { background: url("<?php bloginfo('stylesheet_directory'); ?>/images/kubrickheader.jpg") no-repeat bottom center; } 18 #footer { background: url("<?php bloginfo('stylesheet_directory'); ?>/images/kubrickfooter.jpg") no-repeat bottom; border: none;} 19 20 #header { margin: 0 !important; margin: 0 0 0 1px; padding: 1px; height: 198px; width: 758px; } 21 #headerimg { margin: 7px 9px 0; height: 192px; width: 740px; } 22 23 /* 24 #headerimg { background: url('<?php bloginfo('stylesheet_directory'); ?>/images/personalheader.jpg') no-repeat top;} 25 */ 26 </style> 27 28 </head> 29 <body> 30 <div id="page" 31 <?php 6 32 get_currentuserinfo(); 33 ?> 7 34 8 echo "<h1>Welcome to Lyceum $user_identity!</h1>";?> 35 36 <div id="header"> 37 <div id="headerimg"> 38 <h1>Welcome to Lyceum!</h1> 39 <div class="description"><? echo $user_identity?"logged in as $user_identity":''?></div> 40 </div> 41 </div> 42 <hr /> 43 <div id="content" class="narrowcolumn"> 44 <div class="post"> 45 <div class="entry"> 9 46 <p>Thank you for helping to test Lyceum. Click <em>Register</em> to sign up for a username and blog. This will generate a password which will be emailed to you. After logging in, you can create posts, adjust blog settings, comment on your blog and other blogs. You can even create mulitple users/blogs and cross post between them.</p> 10 47 <?php … … 38 75 echo "The system does not yet have any blogs"; 39 76 ?> 77 </div> 78 </div> 79 </div> 80 </div> 81 </body> 82 </html>
