-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Implement redirector for the index page
Signed-off-by: 林博仁(Buo-ren, Lin) <Buo.Ren.Lin@gmail.com>
- Loading branch information
Showing
2 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<!-- | ||
Redirector page for the index page of my obsoleted personal site | ||
Copyright 2023 林博仁(Buo-ren, Lin) <Buo.Ren.Lin@gmail.com> | ||
SPDX-License-Identifier: CC-BY-SA-4.0+ | ||
--> | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="application-name" content="Redirector site for https://brlin.me"> | ||
<meta name="application-name" lang="zh-Hant-TW" content="https://brlin.me 的重導向站台"> | ||
<meta name="author" content="林博仁(Buo-ren, Lin)"> | ||
<meta name="spdx-license-identifier" content="CC-BY-SA-4.0+"> | ||
|
||
<title>Redirecting you to the new site...</title> | ||
<meta http-equiv="refresh" content="1; url=https://brlin.me"> | ||
</head> | ||
<body> | ||
<h1>Redirecting you to the new site...</h1> | ||
|
||
<p> | ||
This site has been moved to <a href="https://brlin.me">https://brlin.me</a>, you'll now be redirected to the new site shortly afterwards... | ||
</p> | ||
|
||
<hr> | ||
|
||
<footer> | ||
If you notice any problems on this site, please kindly file them at <a href="https://github.com/Lin-Buo-Ren/Lin-Buo-Ren.github.io/issues">the issue tracker</a>, thank you! | ||
</footer> | ||
</body> | ||
</html> |