mirror of
				https://gitlab.com/ruany/litebans-php.git
				synced 2025-10-30 22:42:25 +00:00 
			
		
		
		
	 f64a147a72
			
		
	
	
		f64a147a72
		
			
		
	
	
	
	
		
			
			en_US locale reduced from 88 messages to 43 messages. Redundant messages have been purged, making it much easier to translate everything. Message indexes now form a consistent and generified tree/branch/leaf structure.
		
			
				
	
	
		
			17 lines
		
	
	
		
			469 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			469 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| require_once './inc/page.php';
 | |
| 
 | |
| $page = new Page("index");
 | |
| $page->print_title();
 | |
| ?>
 | |
| <div class="container">
 | |
|     <div class="jumbotron">
 | |
|         <div style="text-align: center;">
 | |
|             <h2><?php echo str_replace("{server}", $page->settings->name, $page->t("index.welcome.main")); ?></h2>
 | |
|         </div>
 | |
| 
 | |
|         <div style="text-align: center;"><p><?php echo $page->t("index.welcome.sub"); ?></p></div>
 | |
|     </div>
 | |
| </div>
 | |
| <?php $page->print_footer(false); ?>
 |