You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

пре 5 година
пре 6 година
пре 5 година
пре 6 година
пре 5 година
пре 6 година
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {{ $data := index .Site.Data .Site.Language.Lang }}
  2. {{ if $data.portfolio.portfolio.enable }}
  3. {{ with $data.portfolio.portfolio }}
  4. {{"<!-- Portfolio Section -->" | safeHTML}}
  5. <section class="portfolio section" id="portfolio">
  6. <div class="container">
  7. <div class="row ">
  8. <div class="col-xl-12">
  9. {{"<!-- section title -->" | safeHTML}}
  10. <div class="title text-center">
  11. <h2>{{ with .title }} {{ index (split . " ") 0 }} {{ end }}<span class="color">
  12. {{ with .title }} {{ index (split . " ") 1 }} {{ end }}</span></h2>
  13. <div class="border-meghna"></div>
  14. </div>
  15. {{"<!-- /section title -->" | safeHTML}}
  16. </div>
  17. </div>
  18. <div class="row">
  19. <div class="col-lg-12">
  20. <div class="btn-group portfolio-filter btn-group-toggle justify-content-center d-flex flex-wrap"
  21. data-toggle="buttons">
  22. <label class="btn active">
  23. <input type="radio" name="shuffle-filter" value="all" checked="checked" />All
  24. </label>
  25. {{ range .filter_List }}
  26. <label class="btn">
  27. <input type="radio" name="shuffle-filter" value="{{.filter_Type}}" />{{ .filter_Title }}
  28. </label>
  29. {{ end }}
  30. </div>
  31. </div>
  32. </div>
  33. <div class="row shuffle-wrapper">
  34. {{"<!-- portfolio item -->" | safeHTML}}
  35. {{ range .portfolio_Item }}
  36. <div class="col-lg-4 shuffle-item"
  37. data-groups="[{{range $index, $element:= .types }}{{if eq $index 0}} {{else}},{{end}}&quot;{{.}}&quot;{{ end }}]">
  38. <div class="portfolio-block mb-4">
  39. <img class="img-fluid" src="{{ .image | relURL }}" alt="work-image">
  40. <div class="caption">
  41. <a class="search-icon image-popup" data-effect="mfp-with-zoom" href="{{ .image | relURL }}"
  42. data-lightbox="image-1">
  43. <i class="ti-search"></i>
  44. </a>
  45. <h4 class="mt-3"><a href="{{ .URL | relURL }}">{{ .title }}</a></h4>
  46. <p>{{ .content | markdownify }}</p>
  47. </div>
  48. </div>
  49. </div>
  50. {{ end }}
  51. </div>
  52. </div>
  53. </section>
  54. {{"<!-- /Portfolio -->" | safeHTML}}
  55. {{ end }}
  56. {{ end }}