2017-07-30 21:27:54 +00:00
---
2017-07-30 21:44:12 +00:00
fulltitle: "Expo: beautiful websites designed Bulma"
2018-01-16 11:56:54 +00:00
share_title: "⭐️ Bulma Expo: beautiful websites designed with Bulma 😍"
2018-01-16 11:55:12 +00:00
share_image: "/images/expo/bulma-expo-share.png"
share_description: "Get inspired! The Bulma Expo is a curated collection of the most beautiful websites designed with Bulma. It showcases how you can easily customize Bulma for your own personal or business needs."
2017-07-30 21:27:54 +00:00
layout: default
route: expo
2018-04-09 21:25:26 +00:00
breadcrumb:
- home
- expo
2017-07-30 21:27:54 +00:00
---
2017-07-30 21:44:12 +00:00
{% capture embrace_expo %}
2017-08-14 11:44:24 +00:00
< div class = "bd-embrace is-expo" >
< p class = "bd-embrace-text" >
2017-07-30 21:44:12 +00:00
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 >
< / p >
2017-08-14 11:44:24 +00:00
< p class = "bd-embrace-button" >
< a class = "bd-tw-button button"
2017-07-30 21:44:12 +00:00
data-social-network="Twitter"
data-social-action="tweet"
2019-10-18 11:43:14 +00:00
data-social-target="https://bulma.io"
2017-07-30 21:44:12 +00:00
target="_blank"
2019-10-18 11:43:14 +00:00
href="https://twitter.com/intent/tweet?text={{ 'Here is my lovely website!' | urlencode }}& hashtags=madewithbulma">
2017-07-30 21:44:12 +00:00
< span class = "icon" >
2018-01-10 16:30:23 +00:00
< i class = "fab fa-twitter" > < / i >
2017-07-30 21:44:12 +00:00
< / span >
< span >
#madewithbulma
< / span >
< / a >
< / p >
< / div >
{% endcapture %}
2018-04-09 21:25:26 +00:00
{% include global/navbar.html id="Expo" %}
2017-07-30 21:27:54 +00:00
2018-04-09 21:25:26 +00:00
< main class = "bd-main" >
< div class = "bd-main-container container" >
< div class = "bd-duo" >
< div class = "bd-lead" >
{% include components/breadcrumb.html %}
2017-07-30 21:27:54 +00:00
2018-04-09 21:25:26 +00:00
< header class = "bd-header" >
< div class = "bd-header-titles" >
< h1 class = "title" >
Expo
< / h1 >
< p class = "subtitle is-4" >
2018-04-11 11:54:56 +00:00
How people use Bulma to design beautiful websites < span style = "font-size: 20px; margin-left: 2px; position: relative; top: 1px;" > 😍< / span >
2018-04-09 21:25:26 +00:00
< / p >
< / div >
2017-07-30 21:44:12 +00:00
2018-04-09 21:25:26 +00:00
< div class = "bd-header-carbon" >
{% include elements/carbon.html %}
< / div >
< / header >
2017-07-30 21:27:54 +00:00
2018-04-09 21:25:26 +00:00
< div class = "bd-content" >
{{ embrace_expo }}
< div class = "bd-websites" >
2019-04-07 17:38:35 +00:00
{% for website_id in site.data.expo.lists.expo %}
{% assign website = site.data.expo.by_id[website_id] %}
2019-04-07 18:20:46 +00:00
{% assign imageName = website_id | slugify %}
2018-04-09 21:25:26 +00:00
{% assign imagePath = "/images/expo/" | prepend: site.url | append: imageName %}
< article class = "bd-website {% if website.highlighted %}bd-is-highlighted{% endif %}" >
< a class = "bd-website-image" href = "{{ website.url }}" target = "_blank" rel = "nofollow" >
{% if website.highlighted %}
{% assign size1x = "1344x840" %}
{% assign size2x = "2688x1680" %}
< img
class="lazyload"
src="{{ site.url }}/images/placeholders/empty.png"
data-src="{{ imagePath }}-{{ size1x }}.jpg"
data-srcset="{{ imagePath }}-{{ size2x }}.jpg 2x,
{{ imagePath }}-{{ size1x }}.jpg 1x"
width="1344"
height="840">
{% else %}
{% assign size1x = "672x420" %}
{% assign size2x = "1344x840" %}
< img
class="lazyload"
src="{{ site.url }}/images/placeholders/empty.png"
data-src="{{ imagePath }}-{{ size1x }}.jpg"
data-srcset="{{ imagePath }}-{{ size2x }}.jpg 2x,
{{ imagePath }}-{{ size1x }}.jpg 1x"
width="672"
height="420">
{% endif %}
< span class = "bd-website-shadow is-overlay" > < / span >
< span class = "bd-website-overlay is-overlay" > < / span >
< / a >
< h2 class = "title is-5 bd-website-name is-marginless" >
{{ website.name }}
< / h2 >
< p class = "has-text-grey-light bd-website-date" >
{{ website.date }}
< / p >
< / article >
{% endfor %}
< / div >
{{ embrace_expo }}
< / div >
< / div >
< / div >
2017-07-30 21:27:54 +00:00
< / div >
2017-08-02 08:01:38 +00:00
< / main >
2017-10-09 09:04:12 +00:00
< script src = "{{ site.url }}/vendor/lazyload-2.0.0-beta.2.min.js" > < / script >
2017-08-02 08:01:38 +00:00
< script type = "text/javascript" >
;(function() {
2017-10-09 09:04:12 +00:00
lazyload();
2017-08-02 08:01:38 +00:00
})();
2017-08-14 11:44:24 +00:00
< / script >