mirror of
				https://github.com/yanislav-igonin/micrach
				synced 2025-11-04 02:27:02 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			64 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
 | 
						|
<head>
 | 
						|
  {{ template "static" }}
 | 
						|
  <link href="/static/styles/index.css" rel="stylesheet">
 | 
						|
  {{ template "meta-tags-static" }}
 | 
						|
</head>
 | 
						|
 | 
						|
<body>
 | 
						|
  <h1 class="display-1 text-center">Welcome to Micrach</h1>
 | 
						|
 | 
						|
  <div class="container">
 | 
						|
    {{ template "post-form" .FormData }}
 | 
						|
 | 
						|
    <div id="" class="row row-cols-auto gy-4 mb-4 justify-content-center">
 | 
						|
      {{ range $Post := .Threads }}
 | 
						|
      <div class="col col-sm-6 col-md-4 col-lg-3">
 | 
						|
        <div class="card">
 | 
						|
 | 
						|
          {{ $length := len $Post.Files }}
 | 
						|
          {{ if gt $length 0 }}
 | 
						|
          {{ $FirstFile := index $Post.Files 0 }}
 | 
						|
          <img src="/uploads/{{$Post.ID}}/t/{{$FirstFile.ID}}.{{$FirstFile.Ext}}" class="card-img-top"
 | 
						|
            alt="Uploaded picture">
 | 
						|
          {{ end }}
 | 
						|
 | 
						|
          <div class="card-body">
 | 
						|
            {{ if ne $Post.Title "" }}
 | 
						|
            <h5 class="card-title">{{$Post.Title}}</h5>
 | 
						|
            {{ end }}
 | 
						|
 | 
						|
            {{ $textLength := len $Post.Text }}
 | 
						|
            {{ if gt $textLength 300 }}
 | 
						|
            <p class="card-text line-break text-break">{{ slice $Post.Text 0 300 }} ...</p>
 | 
						|
            {{ else }}
 | 
						|
            <p class="card-text line-break text-break">{{$Post.Text}}</p>
 | 
						|
            {{ end }}
 | 
						|
 | 
						|
            <a href="/{{$Post.ID}}" class="btn btn-outline-primary">Open</a>
 | 
						|
          </div>
 | 
						|
        </div>
 | 
						|
      </div>
 | 
						|
      {{ end }}
 | 
						|
    </div>
 | 
						|
 | 
						|
    <div class="col col-12">
 | 
						|
      <nav aria-label="Page navigation">
 | 
						|
        <ul id="pagesList" class="pagination justify-content-center">
 | 
						|
          {{ $ActivePage := .Page }}
 | 
						|
          {{ range $i := Iterate .PagesCount }}
 | 
						|
          <li class="page-item {{ if (eq $i $ActivePage) }} active {{ end }}">
 | 
						|
            <a class="page-link" href="/?page={{ $i }}">{{ $i }}</a>
 | 
						|
          </li>
 | 
						|
          {{ end }}
 | 
						|
        </ul>
 | 
						|
      </nav>
 | 
						|
    </div>
 | 
						|
  </div>
 | 
						|
 | 
						|
  {{ template "footer" }}
 | 
						|
</body>
 | 
						|
 | 
						|
</html> |