mirror of
				https://github.com/KevinMidboe/linguist.git
				synced 2025-10-29 17:50:22 +00:00 
			
		
		
		
	* Added EJS Language Support * Added the submodule reference for ejs-tmbundle * Adding EJS license
		
			
				
	
	
		
			14 lines
		
	
	
		
			381 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			381 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| <% include parts/depend %>
 | |
| 
 | |
| <div class="row">
 | |
|   <% if (user.primaryAccount == "teacher") { %>
 | |
|     <% include teacher/sidebar %>
 | |
|     <% include teacher/dashboard %>
 | |
|   <% } else if (user.primaryAccount == "student") { %>
 | |
|     <% include student/sidebar %>
 | |
|     <% include student/dashboard %>
 | |
|   <% } else { %>
 | |
|     <center><h2>There seems to be a problem</h2></center>
 | |
|   <% } %>
 | |
| </div>
 |