adding of .generic-content-wrapper is needed and useful for derivative themes but it should not contain any styling information for redbasic theme. therefor i added .generic-content-wrapper-styled as a quickfix for spots where redbasic is not finished yet. Sidenote: please avoid opening a div in one *.tpl and close it in another or (even worse) open a div in a *.tpl and close it in an already templatified mod/*.php. This will really make the code and templates very, very confusing.
		
			
				
	
	
		
			12 lines
		
	
	
		
			346 B
		
	
	
	
		
			Smarty
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			346 B
		
	
	
	
		
			Smarty
		
	
	
		
			Executable File
		
	
	
	
	
| <div class="generic-content-wrapper-styled">
 | |
| 
 | |
| <h1>{{$notif_header}}</h1>
 | |
| 
 | |
| {{if $notifications_available}}
 | |
| <a href="#" onclick="markRead('notify'); setTimeout(function() { window.location.href=window.location.href; },1500); return false;">{{$notif_link_mark_seen}}</a>
 | |
| {{/if}}
 | |
| <div class="notif-network-wrapper">
 | |
| 	{{$notif_content}}
 | |
| </div>
 | |
| </div>
 |