1
Fork 0

Compare commits

...

2 Commits

Author SHA1 Message Date
Bauke 7f8d171825
Add the _9xtYCGWtn4 video. 2023-01-29 14:33:48 +01:00
Bauke 796befb383
Move the YouTube iframe outside the speedrun block. 2023-01-29 14:33:01 +01:00
3 changed files with 20 additions and 8 deletions

View File

@ -52,14 +52,13 @@
{% endfor %}
</ul>
{% endif %}
<iframe
src="https://www.youtube-nocookie.com/embed/{{ video_id }}"
title="Embedded YouTube video player"
frameborder="0"
allowfullscreen>
</iframe>
{% endif %}
<iframe
src="https://www.youtube-nocookie.com/embed/{{ video_id }}"
title="Embedded YouTube video player"
frameborder="0"
allowfullscreen>
</iframe>
</main>
{% endblock %}

View File

@ -0,0 +1,13 @@
---toml
id = "_9xtYCGWtn4"
page_title = "No HUD Hazard 5 Mining Expedition"
tags = ["Deep Rock Galactic", "No HUD"]
---
## Description
Trying something new with Deep Rock Galactic: playing without the HUD. Can't see how much health I have, how far off I'm from completing the mission objective, the terrain scanner no longer works and even where the drop pod will land is a mystery.
## Build
The build I used is available on [Karl.gg](https://karl.gg/preview/21636#/). Try it out yourself!

View File

@ -59,7 +59,7 @@ pub fn write_all(public_dir: &Path) -> Result<()> {
let video_datas = {
let mut data = vec![];
for dir in ["2022"] {
for dir in ["2022", "2023"] {
for file in fs::read_dir(format!("source/video/{dir}"))? {
let file_path = file?.path();
if file_path.extension().unwrap() != "md" {