This repository was archived by the owner on Dec 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtalks.html
More file actions
50 lines (47 loc) · 1.46 KB
/
talks.html
File metadata and controls
50 lines (47 loc) · 1.46 KB
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
---
layout: default
title: "Talks"
description: "Recorded demos and tutorials on GitHub Actions and MLOps."
image: "/assets/images/Enterprise-Observability.svg"
---
<section class="intro blog_intro">
<div class="image_box">
<img src="{{page.image}}" alt="demos" />
</div>
<div class="text_box">
<h1>{{page.title}}</h1>
<p>{{page.description}}</p>
<!-- tags filter -->
<div class="tags">
{% assign tags = site.data.demos | map: 'tags' | uniq %}
<button class="tag_filter active" data-tag="all">All</button>
{%- assign s = tags | size | minus: 2 -%} {%- for i in (0..s) -%}
<button class="tag_filter" data-tag="{{tags[i] | replace: ' ', '_'}}">
{{tags[i]}}
</button>
{%- endfor -%}
</div>
<div class="posts_list">
{%- for item in site.data.demos -%} {% assign t = item.tags | join: "%%" |
replace: " ", "_"| replace: "%%", " " %}
<div class="blog content_item {{t}}">
<a href="{{item.link}}">
<h2>{{item.title}}</h2>
</a>
<h3>{{item.subtitle}}</h3>
<p>{{item.info}}</p>
<iframe
class="y_video"
width="600"
height="400"
src="https://www.youtube.com/embed/{{item.video_id}}"
frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
>
</iframe>
</div>
{%- endfor -%}
</div>
</div>
</section>