Compare commits
5 commits
fdeef6efae
...
eda0b2f9e8
Author | SHA1 | Date | |
---|---|---|---|
eda0b2f9e8 | |||
81c34d6c3d | |||
d189a88c78 | |||
af216ac962 | |||
16fdac22cd |
11 changed files with 166 additions and 6 deletions
|
@ -11,9 +11,8 @@
|
||||||
<div class="window">
|
<div class="window">
|
||||||
<div class="nav">
|
<div class="nav">
|
||||||
<button onclick="loadContent('home.md')">Home</button>
|
<button onclick="loadContent('home.md')">Home</button>
|
||||||
<button onclick="loadContent('about.md')">About</button>
|
<a href="./logs/"><button>Logs</button></a>
|
||||||
<button onclick="loadContent('contact.md')">Contact</button>
|
<a href="./grimoire/"><button>Grimoire</button></a>
|
||||||
<button>Grimoire</button>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="content" id="mainContent">
|
<div class="content" id="mainContent">
|
||||||
|
|
||||||
|
|
BIN
home/library/logs/bg.jpg
(Stored with Git LFS)
Normal file
BIN
home/library/logs/bg.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
47
home/library/logs/index.html
Normal file
47
home/library/logs/index.html
Normal file
|
@ -0,0 +1,47 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Library | waifuism.life</title>
|
||||||
|
<link rel="stylesheet" href="styles.css">
|
||||||
|
<script src="/libs/marked.min.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="window">
|
||||||
|
<div class="nav">
|
||||||
|
<button onclick="loadContent('home.md')">Home</button>
|
||||||
|
<button onclick="loadContent('slowly.md')">Slowly</button>
|
||||||
|
</div>
|
||||||
|
<div class="content" id="mainContent">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
function loadContent(file) {
|
||||||
|
fetch(`markdown/${file}`)
|
||||||
|
.then(response => {
|
||||||
|
if (!response.ok) {
|
||||||
|
throw new Error(`Network response was not ok: ${response.statusText}`);
|
||||||
|
}
|
||||||
|
return response.text();
|
||||||
|
})
|
||||||
|
.then(text => {
|
||||||
|
const mainContent = document.getElementById('mainContent');
|
||||||
|
mainContent.innerHTML = marked.parse(text);
|
||||||
|
})
|
||||||
|
.catch(error => {
|
||||||
|
console.error('Error loading content:', error);
|
||||||
|
const mainContent = document.getElementById('mainContent');
|
||||||
|
mainContent.innerHTML = `<p>Error loading content. Please try again later.</p>`;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// Load the default home content on page load
|
||||||
|
window.onload = function() {
|
||||||
|
loadContent('home.md');
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
4
home/library/logs/markdown/home.md
Normal file
4
home/library/logs/markdown/home.md
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
# Home
|
||||||
|
This is a kind of blog I guess.
|
||||||
|
|
||||||
|

|
23
home/library/logs/markdown/slowly.md
Normal file
23
home/library/logs/markdown/slowly.md
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
# Slowly
|
||||||
|
|
||||||
|
Even now as I write, I wonder to feels if I should be paying attention to the things around me or not.
|
||||||
|
|
||||||
|
I love to walk through a small park near my apartment, it's size is barely a block but I've seen it have quite the movement, children playing, people drinking mate, the usual.
|
||||||
|
|
||||||
|
I have to remind myself to walk slowly through it in order to enjoy it.
|
||||||
|
|
||||||
|
Is it normal to be walking so fast?
|
||||||
|
|
||||||
|
I wondered myself if forcing yourself to be overworked because "you will not be able to finish a piece of art" is something worthwhile for me.
|
||||||
|
|
||||||
|
Would I be sad I didn't finish a piece when I die?
|
||||||
|
|
||||||
|
I like to think it's a similar question to "Am I sad because I didn't read more books when I was at school? Because I never told my crush my feelings? Because I didn't do something that I can't do anymore?"
|
||||||
|
|
||||||
|
Honestly I am not sure what would I say on that day when I finally bite the dust.
|
||||||
|
|
||||||
|
But today I shall enjoy it the ways that I know how to.
|
||||||
|
|
||||||
|
Today that answer may be "No, not really.".
|
||||||
|
|
||||||
|
They recently opened a coffee place near my house, I wonder if their coffee has good aroma.
|
BIN
home/library/logs/markdown/waifuism_tan.png
(Stored with Git LFS)
Normal file
BIN
home/library/logs/markdown/waifuism_tan.png
(Stored with Git LFS)
Normal file
Binary file not shown.
55
home/library/logs/styles.css
Normal file
55
home/library/logs/styles.css
Normal file
|
@ -0,0 +1,55 @@
|
||||||
|
|
||||||
|
body {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
height: 100vh;
|
||||||
|
margin: 0;
|
||||||
|
background-color: #f0f0f0;
|
||||||
|
background-image: url("./bg.jpg");
|
||||||
|
background-position: center;
|
||||||
|
}
|
||||||
|
.window {
|
||||||
|
display: flex;
|
||||||
|
width: 80%;
|
||||||
|
height: 80%;
|
||||||
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
||||||
|
background-color: rgb(255, 255, 255);
|
||||||
|
border-radius: 8px;
|
||||||
|
}
|
||||||
|
.nav {
|
||||||
|
width: 10%;
|
||||||
|
background-color: #306cab;
|
||||||
|
color: rgb(255, 255, 255);
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
padding: 20px;
|
||||||
|
border-top-left-radius: 8px;
|
||||||
|
border-bottom-left-radius: 8px;
|
||||||
|
}
|
||||||
|
.nav button {
|
||||||
|
width: 100%;
|
||||||
|
margin: 10px 0;
|
||||||
|
padding: 10px;
|
||||||
|
border: none;
|
||||||
|
border-radius: 4px;
|
||||||
|
background-color: #77e6ea;
|
||||||
|
color: rgb(0, 0, 0);
|
||||||
|
cursor: pointer;
|
||||||
|
transition: background-color 0.3s;
|
||||||
|
}
|
||||||
|
.nav button:hover {
|
||||||
|
background-color: #1abc9c;
|
||||||
|
}
|
||||||
|
.content {
|
||||||
|
width: 90%;
|
||||||
|
padding: 20px;
|
||||||
|
border-top-right-radius: 8px;
|
||||||
|
border-bottom-right-radius: 8px;
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
.content img {
|
||||||
|
max-width: 100%;
|
||||||
|
height: auto;
|
||||||
|
}
|
3
home/library/markdown/home.md
Normal file
3
home/library/markdown/home.md
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
# Library
|
||||||
|
|
||||||
|

|
BIN
home/library/static/bg.jpg
(Stored with Git LFS)
Normal file
BIN
home/library/static/bg.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
home/library/static/frieren.jpg
(Stored with Git LFS)
Normal file
BIN
home/library/static/frieren.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
|
@ -5,7 +5,10 @@ body {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
background-color: #f0f0f0;
|
background-color: #211000;
|
||||||
|
background-image: url("./static/bg.jpg");
|
||||||
|
background-position: center;
|
||||||
|
background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.window {
|
.window {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
@ -36,9 +39,12 @@ body {
|
||||||
color: white;
|
color: white;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: background-color 0.3s;
|
transition: background-color 0.3s;
|
||||||
|
transform: 0.3s;
|
||||||
|
|
||||||
}
|
}
|
||||||
.nav button:hover {
|
.nav button:hover {
|
||||||
background-color: #1abc9c;
|
background-color: #c2a25e;
|
||||||
|
transform: scale(1.05) rotate(1deg);
|
||||||
}
|
}
|
||||||
.content {
|
.content {
|
||||||
width: 75%;
|
width: 75%;
|
||||||
|
@ -47,3 +53,14 @@ body {
|
||||||
border-bottom-right-radius: 8px;
|
border-bottom-right-radius: 8px;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.content img {
|
||||||
|
max-width: 100%;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Move when clicked */
|
||||||
|
.nav button:active {
|
||||||
|
transform: scale(1.2);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue