58 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| class HomeTheme extends Themelet {
 | |
| 	public function display_page(Page $page, $sitename, $data_href, $theme_name, $body) {
 | |
| 		$page->set_mode("data");
 | |
| 		$page->set_data(<<<EOD
 | |
| <html>
 | |
| 	<head>
 | |
| 		<title>$sitename</title>
 | |
| 		<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
 | |
| 		<link rel='stylesheet' href='$data_href/themes/$theme_name/style.css' type='text/css'>
 | |
| 	</head>
 | |
| 	<style>
 | |
| 		div#front-page h1 {font-size: 4em; margin-top: 2em; margin-bottom: 0px; text-align: center; border: none; background: none; box-shadow: none; -webkit-box-shadow: none; -moz-box-shadow: none;}
 | |
| 		div#front-page {text-align:center;}
 | |
| 		.space {margin-bottom: 1em;}
 | |
| 		div#front-page div#links a {margin: 0 0.5em;}
 | |
| 		div#front-page li {list-style-type: none; margin: 0;}
 | |
| 	</style>
 | |
| 	<body>
 | |
| 		$body
 | |
| 	</body>
 | |
| </html>
 | |
| EOD
 | |
| );
 | |
| 	}
 | |
| 
 | |
| 	public function build_body($sitename, $main_links, $main_text, $contact_link, $num_comma, $counter_text) {
 | |
| 		$main_links_html = empty($main_links) ? "" : "<div class='space' id='links'>$main_links</div>";
 | |
| 		$message_html = empty($main_text)     ? "" : "<div class='space' id='message'>$main_text</div>";
 | |
| 		$counter_html = empty($counter_text)  ? "" : "<div class='space' id='counter'>$counter_text</div>";
 | |
| 		$search_html = "
 | |
| 			<div class='space' id='search'>
 | |
| 				<form action='".make_link("post/list")."' method='GET'>
 | |
| 				<input id='search_input' name='search' size='30' type='text' value='' autocomplete='off' />
 | |
| 				<input type='hidden' name='q' value='/post/list'>
 | |
| 				<input type='submit' value='Search'/>
 | |
| 				</form>
 | |
| 			</div>
 | |
| 		";
 | |
| 		return "
 | |
| 		<div id='front-page'>
 | |
| 			<h1><a style='text-decoration: none;' href='".make_link()."'><span>$sitename</span></a></h1>
 | |
| 			$main_links_html
 | |
| 			$search_html
 | |
| 			$message_html
 | |
| 			$counter_html
 | |
| 			<div class='space' id='foot'>
 | |
| 				<small><small>
 | |
| 				<a href='mailto:$contact_link'>Contact</a> – Serving $num_comma posts –
 | |
| 				Running <a href='http://code.shishnet.org/shimmie2/'>Shimmie</a>
 | |
| 				</small></small>
 | |
| 			</div>
 | |
| 		</div>";
 | |
| 	}
 | |
| }
 | |
| ?>
 |