Advertisement
Guest User

Untitled

a guest
Mar 25th, 2015
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Go 1.18 KB | None | 0 0
  1.  
  2. {{ partial "header.html" . }}
  3.  
  4. <!-- Page Header -->
  5. <div class="row">
  6.     <div class="col-md-12">
  7.         <h3>Портфолио</h3>
  8.     </div>
  9. </div>
  10.  
  11.  
  12.  
  13. {{ $portfolio := where .Data.Pages "Section" "portfolio" }}
  14.   {{ $len := len $portfolio }}
  15.   {{ $len := sub $len 1 }}
  16.  
  17.   {{ range $index, $el := $portfolio }}
  18.     {{ if modBool $index 2 }}
  19.             <div class="row">
  20.             <div class="col-md-6">
  21.               <a href="{{ .Permalink }}">
  22.                 <img src="{{ .Site.BaseUrl }}images/portfolio/{{ .Params.photo }}" alt="" class="img-responsive">
  23.                 <h5>{{ .Title }}</h5>
  24.               </a>
  25.             </div>      
  26.     {{ else }}
  27.             <div class="col-md-6">
  28.               <a href="{{ .Permalink }}">
  29.                 <img src="{{ .Site.BaseUrl }}images/portfolio/{{ .Params.photo }}" alt="" class="img-responsive">
  30.                 <h5>{{ .Title }}</h5>
  31.               </a>
  32.             </div>  
  33.         </div>
  34.     {{ end }}
  35.  
  36.     {{ $zero := sub $len $index }}
  37.     {{ if eq $zero 0 }}
  38.             <div class="col-md-6">                  
  39.             </div>
  40.         </div>
  41.     {{ end }}
  42.    
  43.   {{ end }}
  44.  
  45. {{ partial "footer.html" . }}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement