mirror of
				https://github.com/DerTyp7/tealcode-django-python.git
				synced 2025-10-31 13:17:07 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			42 lines
		
	
	
		
			913 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			913 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends "base.html" %}
 | |
| {% block content %}
 | |
| <div class="container mx-auto">
 | |
|   <div class="row">
 | |
| 
 | |
|     <div class="col text-center fw-bold">
 | |
|       <h2><br>Welcome to TealCode</h2>
 | |
|       <h5>Your code snippet directory</h5>
 | |
|     </div>
 | |
| 
 | |
|   </div>
 | |
| 
 | |
|   <div class="row">
 | |
|     <div class="col">
 | |
|       
 | |
|     </div>
 | |
| 
 | |
|     <div class="col col-8 text-center fw-bold">
 | |
|       <div class="container">
 | |
|         <h5><br>Categories</h5>
 | |
|         <div class="container">
 | |
|           <div class="list-group bg-dark">
 | |
|             {% for category in categorys %}
 | |
|             <button onclick='window.open("/category/{{ category.title }}", "_self");' type="button" class="list-group-item list-group-item-action">{{ category.display_name }}</button>
 | |
|             {% endfor %}
 | |
|           </div>
 | |
|         </div>
 | |
|       </div>
 | |
|     </div>
 | |
| 
 | |
|     <div class="col">
 | |
|       <!--<h5><br>Activity</h5>-->
 | |
|     </div>
 | |
|   </div>
 | |
| </div>
 | |
| 
 | |
| 
 | |
| 
 | |
| 
 | |
| 
 | |
| 
 | |
| {% endblock content %} | 
