mirror of
https://github.com/zyllian/zyllian.github.io.git
synced 2025-05-09 18:16:43 -07:00
Update site URL
This commit is contained in:
parent
fe08da340f
commit
698cea9ab5
7 changed files with 8 additions and 8 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -1941,7 +1941,7 @@ dependencies = [
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "zoey"
|
name = "zyl"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
[package]
|
[package]
|
||||||
name = "zoey"
|
name = "zyl"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# zoey.dev
|
# zyl.gay
|
||||||
|
|
||||||
Source for my website (located at [zoey.dev](https://zoey.dev)) and the custom static site generator I've built alongside it.
|
Source for my website (located at [zyl.gay](https://zyl.gay)) and the custom static site generator I've built alongside it.
|
||||||
|
|
||||||
Still in progress.
|
Still in progress.
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
base_url: "https://zoey.dev"
|
base_url: "https://zyl.gay"
|
||||||
title: Zyllian
|
title: Zyllian
|
||||||
description: "Zoey's website."
|
description: "Zoey's website."
|
||||||
sass_styles: [index.scss]
|
sass_styles: [index.scss]
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
zoey.dev
|
zyl.gay
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
use std::path::Path;
|
use std::path::Path;
|
||||||
|
|
||||||
use zoey::Site;
|
use zyl::Site;
|
||||||
|
|
||||||
#[cfg(feature = "serve")]
|
#[cfg(feature = "serve")]
|
||||||
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
||||||
|
|
|
@ -75,7 +75,7 @@ fn create(
|
||||||
builder.build_sass().context("Failed to rebuild Sass")?;
|
builder.build_sass().context("Failed to rebuild Sass")?;
|
||||||
}
|
}
|
||||||
} else if let Ok(root_path) = relative_path.strip_prefix(ROOT_PATH) {
|
} else if let Ok(root_path) = relative_path.strip_prefix(ROOT_PATH) {
|
||||||
std::fs::copy(&path, builder.build_path.join(root_path))?;
|
std::fs::copy(path, builder.build_path.join(root_path))?;
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue