Advertisement
Ksaadawi

Accessoires finalized

Jan 14th, 2020
2,955
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.70 KB | None | 0 0
  1. Skip to content
  2. Projects
  3. Groups
  4. Snippets
  5. Help
  6. Toggle navigation
  7. AmbreEtCie
  8. AmbreEtCie
  9. Project overview
  10. Repository
  11. Files
  12. Commits
  13. Branches
  14. Tags
  15. Contributors
  16. Graph
  17. Compare
  18. Charts
  19. Locked Files
  20. Issues
  21. 0
  22. Merge Requests
  23. 0
  24. CI / CD
  25. Security & Compliance
  26. Packages
  27. Wiki
  28. Snippets
  29. Members
  30.  
  31. Close sidebar
  32. Open sidebar
  33. Johan
  34. AmbreEtCieAmbreEtCie
  35. Repository
  36. master
  37. AmbreEtCie
  38. accessoires.html
  39. accessoires.html 1.12 KB
  40.  
  41. 1
  42. 2
  43. 3
  44. 4
  45. 5
  46. 6
  47. 7
  48. 8
  49. 9
  50. 10
  51. 11
  52. 12
  53. 13
  54. 14
  55. 15
  56. 16
  57. 17
  58. 18
  59. 19
  60. 20
  61. 21
  62. 22
  63. 23
  64. 24
  65. 25
  66. 26
  67. 27
  68. 28
  69. 29
  70. 30
  71. 31
  72. 32
  73. 33
  74. 34
  75. ---
  76. layout: page
  77. title: Accessoires
  78. permalink: /services/boutique/accessoires/
  79. parent: Boutique
  80. parentUrl: /services/boutique/
  81. level: 3
  82. order: 3
  83. ---
  84. <div class="accessoires">
  85. <section class="section-accessoires">
  86. <div class="row my-gallery galerie-container clearfix" itemscope itemtype="http://schema.org/ImageGallery">
  87. {% assign sorted_accessoires = site.accessoires | sort:"order" %}
  88. {% for accessoire in sorted_accessoires %}
  89. <figure class="col-lg-4 col-sm-6 col-6" itemprop="associatedMedia" itemscope itemtype="http://schema.org/ImageObject">
  90. <a href="{{ site.baseurl }}{{ accessoire.image }}" itemprop="contentUrl" data-size="800x600">
  91. <img class="image" src="{{ site.baseurl }}{{ accessoire.image }}" alt="image" />
  92. </a>
  93. <figcaption class="caption" itemprop="caption description">
  94. <span class="titre label-pink">{{ accessoire.titre }}</span>
  95. <span class="description">{{ accessoire.description }}</span>
  96. </figcaption>
  97. </figure>
  98. {% endfor %}
  99. </div>
  100. </section>
  101. {% include photoswipe.html %}
  102. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement