Compare commits
No commits in common. "7f8d171825e235d6a7a55063345c557984f9e7fa" and "f4fce844cac9bdd5a9a648d4fc156227c3569175" have entirely different histories.
7f8d171825
...
f4fce844ca
|
@ -52,7 +52,6 @@
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
<iframe
|
<iframe
|
||||||
src="https://www.youtube-nocookie.com/embed/{{ video_id }}"
|
src="https://www.youtube-nocookie.com/embed/{{ video_id }}"
|
||||||
|
@ -60,5 +59,7 @@
|
||||||
frameborder="0"
|
frameborder="0"
|
||||||
allowfullscreen>
|
allowfullscreen>
|
||||||
</iframe>
|
</iframe>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
</main>
|
</main>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
|
@ -1,13 +0,0 @@
|
||||||
---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!
|
|
|
@ -59,7 +59,7 @@ pub fn write_all(public_dir: &Path) -> Result<()> {
|
||||||
let video_datas = {
|
let video_datas = {
|
||||||
let mut data = vec![];
|
let mut data = vec![];
|
||||||
|
|
||||||
for dir in ["2022", "2023"] {
|
for dir in ["2022"] {
|
||||||
for file in fs::read_dir(format!("source/video/{dir}"))? {
|
for file in fs::read_dir(format!("source/video/{dir}"))? {
|
||||||
let file_path = file?.path();
|
let file_path = file?.path();
|
||||||
if file_path.extension().unwrap() != "md" {
|
if file_path.extension().unwrap() != "md" {
|
||||||
|
|
Loading…
Reference in New Issue