Skip to content

Commit

Permalink
add updated embedded youtube video
Browse files Browse the repository at this point in the history
  • Loading branch information
guofoo committed Nov 2, 2023
1 parent 3aa2cfd commit 6a23caa
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 4 deletions.
5 changes: 4 additions & 1 deletion content/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,12 @@ sort_by = "weight"

**Robius** is a fully open-source, decentralized, community-driven effort to enable multi-platform application development in Rust.

[Robius conference talk on YouTube](https://www.youtube.com/watch?v=jPq7w7qJrjs)

{{ youtube(id="jPq7w7qJrjs") }}

For more info, check out:

* [Project Robius (Github)](https://github.com/project-robius)
* [The Robius Book](https://project-robius.github.io/book/)
* [a Robius conference talk on YouTube](https://youtu.be/8JfOXfmwotQ?si=kLogqnaApYPNuSq8&t=6802)
* [a Robius PowerPoint slide deck (18MB)](https://github.com/project-robius/files/raw/041e980ec1d14bf325f1fb2ba743f8ed142a70cb/Robius%20-%20A%20Vision%20for%20Multi-platform%20App%20Development%20in%20Rust.pptx), [PDF version (15MB)](https://github.com/project-robius/files/blob/041e980ec1d14bf325f1fb2ba743f8ed142a70cb/Robius%20-%20A%20Vision%20for%20Multi-platform%20App%20Development%20in%20Rust.pdf)
3 changes: 2 additions & 1 deletion content/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ weight = 3

**Robius** is a fully open-source, decentralized, community-driven effort to enable multi-platform application development in Rust.


# Logo

![](/robius-logo.png)
![](/robius-logo-text.png)
2 changes: 1 addition & 1 deletion public/about/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@
<h1 id="robius">Robius</h1>
<p><strong>Robius</strong> is a fully open-source, decentralized, community-driven effort to enable multi-platform application development in Rust.</p>
<h1 id="logo">Logo</h1>
<p><img src="/robius-logo.png" alt="" /></p>
<p><img src="/robius-logo-text.png" alt="" /></p>


</div>
Expand Down
10 changes: 9 additions & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -160,11 +160,19 @@ <h3 class="title-text">
<div id="features" class="heading-text">Overview</div>
<h1 id="robius">Robius</h1>
<p><strong>Robius</strong> is a fully open-source, decentralized, community-driven effort to enable multi-platform application development in Rust.</p>
<p><a href="https://www.youtube.com/watch?v=jPq7w7qJrjs">Robius conference talk on YouTube</a></p>
<div >
<iframe
src="https://www.youtube.com/embed/jPq7w7qJrjs"
webkitallowfullscreen
mozallowfullscreen
allowfullscreen>
</iframe>
</div>
<p>For more info, check out:</p>
<ul>
<li><a href="https://github.com/project-robius">Project Robius (Github)</a></li>
<li><a href="https://project-robius.github.io/book/">The Robius Book</a></li>
<li><a href="https://youtu.be/8JfOXfmwotQ?si=kLogqnaApYPNuSq8&amp;t=6802">a Robius conference talk on YouTube</a></li>
<li><a href="https://github.com/project-robius/files/raw/041e980ec1d14bf325f1fb2ba743f8ed142a70cb/Robius%20-%20A%20Vision%20for%20Multi-platform%20App%20Development%20in%20Rust.pptx">a Robius PowerPoint slide deck (18MB)</a>, <a href="https://github.com/project-robius/files/blob/041e980ec1d14bf325f1fb2ba743f8ed142a70cb/Robius%20-%20A%20Vision%20for%20Multi-platform%20App%20Development%20in%20Rust.pdf">PDF version (15MB)</a></li>
</ul>

Expand Down
8 changes: 8 additions & 0 deletions templates/shortcodes/youtube.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<div {% if class %}class="{{class}}"{% endif %}>
<iframe
src="https://www.youtube.com/embed/{{id}}{% if autoplay %}?autoplay=1{% endif %}"
webkitallowfullscreen
mozallowfullscreen
allowfullscreen>
</iframe>
</div>

0 comments on commit 6a23caa

Please sign in to comment.