Skip to content

Add webinars page to docs #1981

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 8, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions source/_data/sidebar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,7 @@ examples:
workshop: workshop.html
media:
courses-media: courses-media.html
webinars-media: webinars-media.html
blogs-media: blogs-media.html
talks-media: talks-media.html
podcasts-media: podcasts-media.html
Expand Down
37 changes: 37 additions & 0 deletions source/_data/webinars.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# large links with thumbnails, links, embedded video
large:
- title: "From Zero to Hero with Cypress: Slido’s journey of creating E2E tests without JS experience"
date: Aug 7, 2019
author: Cypress & sli.do with Filip Hric, Lubo Droby, & Steven Yi
youtubeId: Vnlwy-qF90c

- title: "Complete Code Coverage with Cypress"
date: Jul 31, 2019
author: Cypress with Amir Rustamzadeh and Gleb Bahmutov
youtubeId: C8g5X4vCZJA

- title: "Cypress in a Nutshell"
date: Jul 18, 2019
author: Cypress with Amir Rustamzadeh
youtubeId: LcGHiFnBh3Y

- title: "SaltStack’s QA Turnaround Using Cypress.io"
date: May 22, 2019
author: Cypress & Saltstack with Steve Yi & Nate Watts
youtubeId: 8iBna-2gIzM

- title: "Cypress.io + Percy = End-to-end functional and visual testing for the web"
date: Apr 10, 2019
author: Cypress & Percy with Mike Fotinakis & Gleb Bahmutov
youtubeId: MXfZeE9RQDw

- title: "How GoDaddy Created A Culture of Quality Through Test Automation with Cypress"
date: Mar 28, 2019
author: Cypress & GoDaddy with Pablo Velasquez, Kolya Venturi, Stephen Commisso & Steve Yi
youtubeId: ZSbNT-Fff9A

- title: "Get the latest updates from Cypress"
date: Oct 16, 2018
author: Cypress with Gleb Bahmutov & Brian Mann
youtubeId: FfqD1ExUGlw
slides: https://slides.com/bahmutov/cy-parallelization
11 changes: 11 additions & 0 deletions source/examples/media/webinars-media.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
title: Webinars
containerClass: examples
layout: media
dataType: webinars
---

<!--
If you're looking to add content to our Webinars page,
Go to ../source/_data/webinars.yml and add the webinar.
-->
1 change: 1 addition & 0 deletions themes/cypress/languages/en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ sidebar:
docker: Docker
media: Media
courses-media: Courses
webinars-media: Webinars
blogs-media: Blogs
talks-media: Talks
podcasts-media: Podcasts
Expand Down
1 change: 1 addition & 0 deletions themes/cypress/languages/ja.yml
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ sidebar:
docker: Docker
media: 広報
courses-media: Courses
webinars-media: Webinars
blogs-media: ブログ
talks-media: 講演
podcasts-media: ポッドキャスト
Expand Down
1 change: 1 addition & 0 deletions themes/cypress/languages/zh-cn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@ sidebar:
docker: Docker
media: Media
courses-media: Courses
webinars-media: Webinars
blogs-media: Blogs
talks-media: Talks
podcasts-media: Podcasts
Expand Down
35 changes: 24 additions & 11 deletions themes/cypress/layout/media.swig
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,14 @@
<a href="{{course.url}}" target="_blank" rel="noopener noreferrer">{{ course.title }}</a>
</h3>
<p>
Published on
{% if course.sourceUrl %}
<a href="{{ course.sourceUrl }}">{{ course.sourceName }}</a>
{% else %}
{{ course.sourceName }}
Published
{% if course.sourceUrl or course.sourceName %}
on
{% if course.sourceUrl %}
<a href="{{ course.sourceUrl }}">{{ course.sourceName }}</a>
{% else %}
{{ course.sourceName }}
{% endif %}
{% endif %}
{% if course.author %}
by
Expand Down Expand Up @@ -71,14 +74,24 @@
</a>
{% endif %}
<p>
Published on
{% if media.sourceUrl %}
<a href="{{ media.sourceUrl }}">{{ media.sourceName }}</a>
{% else %}
{{ media.sourceName }}
Published
{% if media.sourceUrl or media.sourceName %}
on
{% if media.sourceUrl %}
<a href="{{ media.sourceUrl }}">{{ media.sourceName }}</a>
{% else %}
{{ media.sourceName }}
{% endif %}
{% endif %}
{% if media.author %}
by {{ media.author }}
by
{% if media.authorTwitter %}
<a href="https://twitter.com/{{media.authorTwitter}}" target="_blank" rel="noopener noreferrer">
{{media.author}}
</a>
{% else %}
{{media.author}}
{% endif %}
{% endif %}
{% if media.date %}
<em>({{ media.date }}).</em>
Expand Down