merge branches

This commit is contained in:
0x01FE 2024-03-14 10:37:29 -05:00
commit bb739aa25e
5 changed files with 12 additions and 3 deletions

View File

@ -4,6 +4,7 @@ import random
import flask import flask
import waitress import waitress
import markdown
from post import Post from post import Post

View File

@ -12,7 +12,7 @@ class Post:
def __init__(self, file_path): def __init__(self, file_path):
self.file = file_path self.file = file_path
with open(file_path, 'r') as file: with open(file_path, 'r', encoding='utf-8') as file:
lines = file.readlines() lines = file.readlines()
self.category = lines[1].split(":")[1].strip() self.category = lines[1].split(":")[1].strip()

View File

@ -25,4 +25,7 @@ What do you mean ... You can't see it?
I don't believe you, your eyes deceive you, better check yourself in I don't believe you, your eyes deceive you, better check yourself in
You will say I'm crazy, I will go on my way 'cause it's what I need You will say I'm crazy, I will go on my way 'cause it's what I need
I'd cross a thousand seas just to prove I'm not mad I'd cross a thousand seas just to prove I'm not mad
I thought I saw a statue blink, and a bird with no head, Land on a golden thread, I rub my eyes, What am I saying? There's nothing there I thought I saw a statue blink, and a bird with no head, Land on a golden thread, I rub my eyes, What am I saying? There's nothing there
Solar Sect of Mystic Wisdom
~ Nuclear Fusion
Check out [NEUPINK](https://neupink.bandcamp.com/album/swordflower-hills-killer-2)!

View File

@ -38,6 +38,11 @@ a:hover {
font-family: Arial, Helvetica, sans-serif; font-family: Arial, Helvetica, sans-serif;
} }
.header a {
text-decoration: none;
color: #703be7;
}
.container { .container {
display: flex; display: flex;

View File

@ -8,7 +8,7 @@
<body> <body>
<div class="header"> <div class="header">
<h1>0x01fe.net</h1> <h1>0x01fe.net</h1>
<h4>{{ status }}</h4> <h4>{{ status|safe }}</h4>
</div> </div>
<div class="container"> <div class="container">
<!-- Sidebar --> <!-- Sidebar -->