|  |  |  | @ -213,10 +213,10 @@ def index(): | 
		
	
		
			
				|  |  |  |  |     info = {'css': 'index', 'news': list_headlines(gather_and_sort(loc)[0:10]), 'title': 'chimchooree\'s dev space - blessfrey', 'year': datetime.datetime.now()} | 
		
	
		
			
				|  |  |  |  |     return template('index.tpl', info) | 
		
	
		
			
				|  |  |  |  | 
 | 
		
	
		
			
				|  |  |  |  | # Game Page - Game Template - system, character, story info | 
		
	
		
			
				|  |  |  |  | @route('/game') | 
		
	
		
			
				|  |  |  |  | def game(): | 
		
	
		
			
				|  |  |  |  |     """game page""" | 
		
	
		
			
				|  |  |  |  | # Projects Page - Game Template - system, character, story info | 
		
	
		
			
				|  |  |  |  | @route('/projects') | 
		
	
		
			
				|  |  |  |  | def projects(): | 
		
	
		
			
				|  |  |  |  |     """projects page""" | 
		
	
		
			
				|  |  |  |  |     info = {'css': 'game', 'title': 'blessfrey - about the game', 'year': datetime.datetime.now()} | 
		
	
		
			
				|  |  |  |  |     return template('game.tpl', info) | 
		
	
		
			
				|  |  |  |  | 
 | 
		
	
	
		
			
				
					|  |  |  | 
 |