2018-05-23 22:01:38 +00:00
|
|
|
|
---
|
|
|
|
|
fulltitle: Bulma Videos
|
|
|
|
|
layout: default
|
|
|
|
|
route: videos
|
|
|
|
|
breadcrumb:
|
|
|
|
|
- home
|
|
|
|
|
- videos
|
|
|
|
|
videos:
|
|
|
|
|
- id: tesla
|
|
|
|
|
title: Tesla launch page
|
2018-05-24 09:25:33 +00:00
|
|
|
|
subtitle: 4 videos – 20 min
|
2018-05-23 22:01:38 +00:00
|
|
|
|
content: Design a responsive launch page with Bulma's component and CSS Grid.
|
|
|
|
|
video_url: https://scrimba.com/p/pV5eHk/cvrwyfR
|
|
|
|
|
article_url: https://medium.freecodecamp.org/how-to-build-a-responsive-tesla-launch-page-with-bulma-css-2bf484057349
|
|
|
|
|
- id: blog
|
|
|
|
|
title: Blog
|
2018-05-24 09:25:33 +00:00
|
|
|
|
subtitle: 4 videos – 23 min
|
2018-05-23 22:01:38 +00:00
|
|
|
|
content: Build a responsive blog with Bulma components.
|
|
|
|
|
video_url: https://scrimba.com/p/pV5eHk/c4EMaUR
|
|
|
|
|
article_url: https://medium.freecodecamp.org/how-to-build-a-responsive-blog-design-with-bulma-css-c2257a17c16b
|
|
|
|
|
- id: slide
|
|
|
|
|
title: Slide
|
2018-05-24 09:25:33 +00:00
|
|
|
|
subtitle: 4 videos – 15 min
|
2018-05-23 22:01:38 +00:00
|
|
|
|
content: Create web-based presentation slides with Bulma.
|
|
|
|
|
video_url: https://scrimba.com/p/pV5eHk/cGym4Ta
|
2018-05-25 18:48:08 +00:00
|
|
|
|
no_video: true
|
2018-05-23 22:01:38 +00:00
|
|
|
|
---
|
|
|
|
|
|
2021-01-27 23:30:42 +00:00
|
|
|
|
{% capture hero_content %}
|
|
|
|
|
<a class="button bd-fat-button is-success is-medium"
|
|
|
|
|
href="{{ site.data.meta.scrimba_url }}"
|
|
|
|
|
target="_blank">
|
|
|
|
|
<span class="icon">
|
|
|
|
|
<i class="fas fa-graduation-cap"></i>
|
|
|
|
|
</span>
|
|
|
|
|
<span>
|
|
|
|
|
Enroll in the free course
|
|
|
|
|
</span>
|
|
|
|
|
</a>
|
|
|
|
|
{% endcapture %}
|
2018-05-23 22:01:38 +00:00
|
|
|
|
|
2021-01-27 23:30:42 +00:00
|
|
|
|
{%
|
2024-03-21 16:39:38 +00:00
|
|
|
|
include docs/components/hero.html
|
2021-01-27 23:30:42 +00:00
|
|
|
|
color="videos"
|
|
|
|
|
icon="fas fa-play-circle"
|
|
|
|
|
title="**Video** tutorials"
|
|
|
|
|
subtitle="Learn Bulma with free interactive Scrimba tutorials"
|
|
|
|
|
content=hero_content
|
|
|
|
|
%}
|
2018-05-23 22:01:38 +00:00
|
|
|
|
|
2021-01-27 23:30:42 +00:00
|
|
|
|
{% for video in page.videos %}
|
|
|
|
|
<div class="bd-video">
|
|
|
|
|
<div class="bd-video-info">
|
|
|
|
|
<h2 class="title">
|
|
|
|
|
{{ video.title }}
|
|
|
|
|
</h2>
|
2018-05-23 22:01:38 +00:00
|
|
|
|
|
2021-01-27 23:30:42 +00:00
|
|
|
|
<p class="subtitle has-text-grey-light">
|
|
|
|
|
{{ video.subtitle }}
|
|
|
|
|
</p>
|
2018-05-23 22:01:38 +00:00
|
|
|
|
|
2021-01-27 23:30:42 +00:00
|
|
|
|
<div class="content is-medium">
|
|
|
|
|
<p>
|
|
|
|
|
{{ video.content }}
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
2018-05-23 22:01:38 +00:00
|
|
|
|
|
2021-01-27 23:30:42 +00:00
|
|
|
|
<div class="buttons">
|
|
|
|
|
<p>
|
|
|
|
|
<a class="button bd-fat-button is-success is-medium" href="{{ video.video_url }}" target="_blank" rel="nofollow">
|
|
|
|
|
<span class="icon">
|
|
|
|
|
<i class="fas fa-play"></i>
|
|
|
|
|
</span>
|
|
|
|
|
<span>Watch video</span>
|
|
|
|
|
</a>
|
2018-05-24 15:43:12 +00:00
|
|
|
|
|
2021-01-27 23:30:42 +00:00
|
|
|
|
{% if video.article_url %}
|
|
|
|
|
<a class="button bd-fat-button is-success is-light is-medium" href="{{ video.article_url }}" target="_blank" rel="nofollow">
|
|
|
|
|
Read article
|
|
|
|
|
</a>
|
|
|
|
|
{% endif %}
|
|
|
|
|
</p>
|
2018-05-23 22:01:38 +00:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2021-01-27 23:30:42 +00:00
|
|
|
|
|
|
|
|
|
<figure class="bd-video-figure">
|
|
|
|
|
<a class="image" href="{{ video.video_url }}" target="_blank" rel="nofollow">
|
|
|
|
|
{% if video.no_video %}
|
|
|
|
|
<img src="{{ site.url }}/images/videos/{{ video.id }}.png" alt="{{ video.title }} screenshot">
|
|
|
|
|
{% else %}
|
|
|
|
|
<video autoplay loop muted>
|
|
|
|
|
<source media="(min-width: 640px)" src="{{ site.url }}/images/videos/{{ video.id }}.mp4">
|
|
|
|
|
</video>
|
|
|
|
|
{% endif %}
|
|
|
|
|
</a>
|
|
|
|
|
</figure>
|
2018-05-23 22:01:38 +00:00
|
|
|
|
</div>
|
2021-01-27 23:30:42 +00:00
|
|
|
|
{% endfor %}
|