mirror of
				https://github.com/yanislav-igonin/micrach
				synced 2025-11-04 10:27:02 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			590 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			590 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
 | 
						|
<head>
 | 
						|
  {{ template "static" }}
 | 
						|
  <link href="/static/styles/index.css" rel="stylesheet">
 | 
						|
  {{ template "meta-tags-static" }}
 | 
						|
</head>
 | 
						|
 | 
						|
<body>
 | 
						|
  {{ template "header" }}
 | 
						|
 | 
						|
  <div class="container">
 | 
						|
    {{ template "post-form" .FormData }}
 | 
						|
 | 
						|
    <div id="" class="row row-cols-auto gy-4 mb-4 justify-content-center">
 | 
						|
      {{ range $Post := .Threads }}
 | 
						|
      {{ template "thread-card" $Post }}
 | 
						|
      {{ end }}
 | 
						|
    </div>
 | 
						|
 | 
						|
    <div class="col col-12">
 | 
						|
      {{ template "pagiantion" .Pagination }}
 | 
						|
    </div>
 | 
						|
  </div>
 | 
						|
 | 
						|
  {{ template "footer" }}
 | 
						|
</body>
 | 
						|
 | 
						|
</html> |