expo.html 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. ---
  2. fulltitle: "Expo: beautiful websites designed Bulma"
  3. layout: default
  4. route: expo
  5. other:
  6. - name: Apache BookKeeper
  7. url: https://lucperkins.github.io/bookkeeper/
  8. date: "26 Jul 2017"
  9. websites:
  10. - name: bongoutindonesia
  11. url: https://bongoutindonesia.com/
  12. date: "1 Oct 2017"
  13. - name: uploadme
  14. url: https://uploadme.ai/
  15. date: "24 Sep 2017"
  16. - name: Gustav
  17. url: https://hellogustav.com/
  18. date: "29 Aug 2017"
  19. highlighted: true
  20. - name: Penmob
  21. url: https://www.penmob.com/
  22. date: "23 Aug 2017"
  23. - name: Brújula Turística
  24. url: https://www.brujulaturistica.com/
  25. date: "3 Aug 2017"
  26. - name: LottieFiles
  27. url: https://www.lottiefiles.com/
  28. date: "1 Aug 2017"
  29. - name: Smileonthetiles
  30. url: https://smileonthetiles.co.uk/
  31. date: "1 Aug 2017"
  32. - name: Sketch for Designrs
  33. url: http://sketch.fordesignrs.com/
  34. date: "22 Aug 2017"
  35. highlighted: true
  36. - name: Bashful Birdie
  37. url: http://www.bashfulbirdie.com/
  38. date: "24 Jul 2017"
  39. - name: Bugcraft Studio
  40. url: https://noggaholic.github.io
  41. date: "24 Jul 2017"
  42. - name: Booknshelf
  43. url: https://booknshelf.com/
  44. date: "20 Jul 2017"
  45. - name: MD5
  46. url: https://desforets.github.io/md5/
  47. date: "24 Jun 2017"
  48. - name: Driftrock
  49. url: https://www.driftrock.com/
  50. date: "13 Jul 2017"
  51. highlighted: true
  52. - name: Jubiwee
  53. url: https://www.jubiwee.com/fr/
  54. date: "24 Jun 2017"
  55. - name: Pragonauts
  56. url: http://pragonauts.com/
  57. date: "23 Jun 2017"
  58. - name: Kappamon
  59. url: https://kappamon.com/
  60. date: "23 Jun 2017"
  61. - name: Elevo
  62. url: http://www.elevo.fr/
  63. date: "23 Jun 2017"
  64. - name: Oneday
  65. url: https://www.oneday.design/
  66. date: "8 Dec 2016"
  67. highlighted: true
  68. - name: Buefy
  69. url: https://buefy.github.io/
  70. date: "10 Apr 2017"
  71. - name: Alt Three
  72. url: https://alt-three.com/
  73. date: "31 Mar 2016"
  74. ---
  75. {% capture embrace_expo %}
  76. <div class="bd-embrace is-expo">
  77. <p class="bd-embrace-text">
  78. Did you design a gorgeous website with Bulma too? <strong>Tell us about it!</strong> <span style="font-size: 20px; margin-left: 2px; position: relative; top: 1px;">🤗</span>
  79. </p>
  80. <p class="bd-embrace-button">
  81. <a class="bd-tw-button button"
  82. data-social-network="Twitter"
  83. data-social-action="tweet"
  84. data-social-target="{{ site.url }}"
  85. target="_blank"
  86. href="https://twitter.com/intent/tweet?text={{ 'Here is my lovely website!' | urlencode }}&hashtags=madewithbulma&url={{ site.url }}">
  87. <span class="icon">
  88. <i class="fa fa-twitter"></i>
  89. </span>
  90. <span>
  91. #madewithbulma
  92. </span>
  93. </a>
  94. </p>
  95. </div>
  96. {% endcapture %}
  97. <div class="container">
  98. {% include navbar.html id="ExpoHero" %}
  99. </div>
  100. <section class="hero is-success">
  101. <div class="hero-body">
  102. <div class="container">
  103. <div class="columns is-vcentered">
  104. <div class="column">
  105. <h1 class="title">
  106. Expo
  107. </h1>
  108. <p class="subtitle">
  109. How people used Bulma to design beautiful websites <span style="font-size: 20px; margin-left: 2px; position: relative; top: 1px;">😍</span>
  110. </p>
  111. </div>
  112. <div class="column is-narrow">
  113. {% include carbon.html %}
  114. </div>
  115. </div>
  116. </div>
  117. </div>
  118. </section>
  119. <main class="bd-expo">
  120. <div class="container">
  121. {{ embrace_expo }}
  122. <div class="bd-websites">
  123. {% for website in page.websites %}
  124. {% assign imageName = website.name | slugify %}
  125. {% assign imagePath = "/images/expo/" | prepend: site.url | append: imageName %}
  126. <article class="bd-website {% if website.highlighted %}bd-is-highlighted{% endif %}">
  127. <a class="bd-website-image" href="{{ website.url }}" target="_blank">
  128. {% if website.highlighted %}
  129. {% assign size1x = "1344x840" %}
  130. {% assign size2x = "2688x1680" %}
  131. <img
  132. class="lazyload"
  133. src="{{ site.url }}/images/placeholders/empty.png"
  134. data-src="{{ imagePath }}-{{ size1x }}.jpg"
  135. data-srcset="{{ imagePath }}-{{ size2x }}.jpg 2x,
  136. {{ imagePath }}-{{ size1x }}.jpg 1x"
  137. width="1344"
  138. height="840">
  139. {% else %}
  140. {% assign size1x = "672x420" %}
  141. {% assign size2x = "1344x840" %}
  142. <img
  143. class="lazyload"
  144. src="{{ site.url }}/images/placeholders/empty.png"
  145. data-src="{{ imagePath }}-{{ size1x }}.jpg"
  146. data-srcset="{{ imagePath }}-{{ size2x }}.jpg 2x,
  147. {{ imagePath }}-{{ size1x }}.jpg 1x"
  148. width="672"
  149. height="420">
  150. {% endif %}
  151. <span class="bd-website-shadow is-overlay"></span>
  152. <span class="bd-website-overlay is-overlay"></span>
  153. </a>
  154. <h2 class="title is-5 bd-website-name is-marginless">
  155. {{ website.name }}
  156. </h2>
  157. <p class="has-text-grey-light bd-website-date">
  158. {{ website.date }}
  159. </p>
  160. </article>
  161. {% endfor %}
  162. </div>
  163. {{ embrace_expo }}
  164. </div>
  165. </main>
  166. <script src="{{ site.url }}/vendor/lazyload-2.0.0-beta.2.min.js"></script>
  167. <script type="text/javascript">
  168. ;(function() {
  169. lazyload();
  170. })();
  171. </script>