merge branches
This commit is contained in:
commit
bb739aa25e
@ -4,6 +4,7 @@ import random
|
||||
|
||||
import flask
|
||||
import waitress
|
||||
import markdown
|
||||
|
||||
from post import Post
|
||||
|
||||
|
||||
@ -12,7 +12,7 @@ class Post:
|
||||
def __init__(self, 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()
|
||||
|
||||
self.category = lines[1].split(":")[1].strip()
|
||||
|
||||
@ -26,3 +26,6 @@ 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
|
||||
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
|
||||
Solar Sect of Mystic Wisdom
|
||||
~ Nuclear Fusion
|
||||
Check out [NEUPINK](https://neupink.bandcamp.com/album/swordflower-hills-killer-2)!
|
||||
@ -38,6 +38,11 @@ a:hover {
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
}
|
||||
|
||||
.header a {
|
||||
text-decoration: none;
|
||||
color: #703be7;
|
||||
}
|
||||
|
||||
.container {
|
||||
|
||||
display: flex;
|
||||
|
||||
@ -8,7 +8,7 @@
|
||||
<body>
|
||||
<div class="header">
|
||||
<h1>0x01fe.net</h1>
|
||||
<h4>{{ status }}</h4>
|
||||
<h4>{{ status|safe }}</h4>
|
||||
</div>
|
||||
<div class="container">
|
||||
<!-- Sidebar -->
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user