forked from jgthms/bulma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexpo.html
151 lines (144 loc) · 4.46 KB
/
expo.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
---
fulltitle: "Expo: beautiful websites designed Bulma"
layout: default
route: expo
other:
- name: Apache BookKeeper
url: https://lucperkins.github.io/bookkeeper/
date: "26 Jul 2017"
websites:
- name: Bashful Birdie
url: http://www.bashfulbirdie.com/
date: "24 Jul 2017"
- name: Bugcraft Studio
url: https://noggaholic.github.io
date: "24 Jul 2017"
- name: Booknshelf
url: https://booknshelf.com/
date: "20 Jul 2017"
- name: MD5
url: https://desforets.github.io/md5/
date: "24 Jun 2017"
- name: Driftrock
url: https://www.driftrock.com/
date: "13 Jul 2017"
highlighted: true
- name: Jubiwee
url: https://www.jubiwee.com/fr/
date: "24 Jun 2017"
- name: Pragonauts
url: http://pragonauts.com/
date: "23 Jun 2017"
- name: Kappamon
url: https://kappamon.com/
date: "23 Jun 2017"
- name: Elevo
url: http://www.elevo.fr/
date: "23 Jun 2017"
- name: Oneday
url: https://www.oneday.design/
date: "8 Dec 2016"
highlighted: true
- name: Buefy
url: https://buefy.github.io/
date: "10 Apr 2017"
- name: Alt Three
url: https://alt-three.com/
date: "31 Mar 2016"
---
{% capture embrace_expo %}
<div class="bd-embrace is-expo">
<p class="bd-embrace-text">
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>
<p class="bd-embrace-button">
<a class="bd-tw-button button"
data-social-network="Twitter"
data-social-action="tweet"
data-social-target="{{ site.url }}"
target="_blank"
href="https://twitter.com/intent/tweet?text={{ 'Here is my lovely website!' | urlencode }}&hashtags=madewithbulma&url={{ site.url }}">
<span class="icon">
<i class="fa fa-twitter"></i>
</span>
<span>
#madewithbulma
</span>
</a>
</p>
</div>
{% endcapture %}
<div class="container">
{% include navbar.html id="ExpoHero" %}
</div>
<section class="hero is-success">
<div class="hero-body">
<div class="container">
<div class="columns is-vcentered">
<div class="column">
<h1 class="title">
Expo
</h1>
<p class="subtitle">
How people used Bulma to design beautiful websites <span style="font-size: 20px; margin-left: 2px; position: relative; top: 1px;">😍</span>
</p>
</div>
<div class="column is-narrow">
{% include carbon.html %}
</div>
</div>
</div>
</div>
</section>
<main class="bd-expo">
<div class="container">
{{ embrace_expo }}
<div class="bd-websites">
{% for website in page.websites %}
{% assign imageName = website.name | slugify %}
{% 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">
{% if website.highlighted %}
{% assign size1x = "1344x840" %}
{% assign size2x = "2688x1680" %}
<img
class="b-lazy"
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="b-lazy"
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-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>
</main>
<script src="{{ site.url }}/vendor/blazy-1.8.2.min.js"></script>
<script type="text/javascript">
;(function() {
var bLazy = new Blazy();
})();
</script>