Skip to content
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

WIP: newest-video: Create landing page with embedded video and description #63

Merged
merged 8 commits into from
Aug 10, 2023
Merged
Show file tree
Hide file tree
Changes from 7 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
3 changes: 2 additions & 1 deletion .github/workflows/seo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
pull_request:
branches:
- main
- develop

jobs:
linkChecker:
Expand All @@ -18,7 +19,7 @@ jobs:
uses: lycheeverse/[email protected]
with:
fail: true
args: --max-redirects 10 -a 403,500,503 .
args: --timeout 60 --max-redirects 10 -a 403,500,503,504 .

seo_spy_orphan_pages:
runs-on: ubuntu-latest
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions config/_default/menus.toml
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,12 @@ name = "Events"
url = "events/"
weight = 5

[[main]]
parent = "News"
name = "Why we fight for freedom?"
url = "newest-video/"
weight = 15

[[main]]
parent = "News"
name = "Press Releases"
Expand Down
63 changes: 63 additions & 0 deletions content/newest-video.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
---
title: "Why we fight for freedom?"
description: ""
image: "images/operating-system.jpg"
draft: false
layout: newest-video
thumbnail:
enable: true
img: "images/newest-video/why-fight-for-freedom.png"
ctavideo:
content: |
---
Join the movement for tech freedom today! Take action and contribute to the
open-source revolution:

1. **Empower Freedom:** Support the cause by purchasing hardware equipped
with open source firmware Dasharo. Check out the selection at
[our online store](https://shop.3mdeb.com/product-category/dasharo-supported-hardware/).
1. **Stay Ahead:** Elevate your experience with the
[Dasharo Entry Subscription](https://shop.3mdeb.com/shop/dasharo-entry-subscription/1year/).
Gain access to the latest binary releases of the Dasharo open-source firmware
distribution for supported Desktop platforms, along with exclusive support.
1. **Connect and Engage:** Stay updated and engaged by joining the
[3mdeb newsletter](https://bit.ly/newsletter-3mdeb) and [Matrix community](https://matrix.to/#/+3mdeb:matrix.org).
Stay connected with fellow enthusiasts and advocates.
1. **Explore Further:** Discover more ways to get involved and help us drive
change. [Explore the opportunities](https://shop.3mdeb.com/product-category/dasharo-supported-hardware/)
to contribute and make a difference.
1. **Unlock Possibilities:** Are you passionate about creating open
solutions? [Reach out to us](https://3mdeb.com/contact/) and explore
collaborative opportunities to shape the future of tech.

Your support and engagement can make a lasting impact on the world of
open-source firmware and technology. Join us in shaping a more open
and empowered digital future!
---

## Discover the significance of freedom in tech

Following video is an insightful and thought-provoking documentary film that
delves into the intricate world of technology's true liberation through
open source firmware. [Mateusz Chrobok](https://www.youtube.com/@MateuszChrobok)
takes his audiences on a captivating journey through the realms of open-source
software and hardware, exploring the profound impact it has on our digital lives.
With a unique focus on the Polish tech scene, the film presents the role of
Dasharo and 3mdeb as a significant participants in the open source firmware
domain.

As the narrative unfolds, viewers are invited to question the multifaceted
dimensions of technological freedom, from the implications of closed-source
systems to the empowering potential of open source solutions.
Through engaging interviews, expert insights, and real-world examples,
the film raises essential questions about the accessibility, security,
and sustainability of modern technology while offering a fresh perspective
on the role of open source in shaping the digital landscape.
pietrushnic marked this conversation as resolved.
Show resolved Hide resolved

<!--
## Release date: August 13, 2023, 6:00PM UTC+2

### Polish language + English subtitles for a global audience

{{< youtube wDiLGMqoc6c >}}
-->
42 changes: 42 additions & 0 deletions themes/3mbed/layouts/_default/newest-video.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{{ define "main" }}

{{ partial "components/page-header.html" . }}

<section class="section">
<div class="container">
<div class="row">
<div class="col-md-10 mx-auto">
<div class="content">
{{ .Content }}
</div>
</div>
</div>
</div>
{{ with .Params.thumbnail }}
{{ if .enable }}
{{ $image := resources.Get "images/newest-video/why-fight-for-freedom.png" }}
<div class="container">
<div class="row">
<div class="col-md-10 mx-auto">
<img src="{{ $image.RelPermalink }}">
</div>
</div>
</div>
{{ end }}
{{ end }}
{{ with .Params.ctavideo }}
<div class="container">
<div class="row">
<div class="col-md-10 mx-auto">
<div class="content">
{{ .content | markdownify }}
</div>
</div>
</div>
</div>
{{ end }}
</section>

{{ partial "components/cta.html" (dict "Context" . "Class" "bg-light") }}

{{ end }}