removed all css and comments stuff

This commit is contained in:
0x01FE 2025-01-30 11:08:45 -06:00
parent e747749e70
commit 2b466e98ef
5 changed files with 109 additions and 134 deletions

View File

@ -33,6 +33,10 @@
font-size: 18px;
}
.post {
margin-bottom: 8em;
}
.post-date {
float: right;
}

View File

@ -2,40 +2,32 @@
<html lang="en">
<header>
<link rel="shortcut icon" href="index_favicon.ico">
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
<title>0x01fe.net - About</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style2.css') }}">
<title>0x01fe.net - {{ title }}</title>
</header>
<body>
<div class="header">
<h1>0x01fe.net</h1>
{{ status|safe }}
</div>
<div class="container">
<!-- Sidebar -->
<div class="sidebar">
<a href="/"><u>Home</u></a><br>
<a href="/category/games/">Games</a><br>
<a href="/music/">Music</a><br>
<a href="/category/motion-pictures/">Motion Picture</a><br>
<a href="/programming/">Programming</a><br>
<a href="/about/">About</a><br>
<a href="/login/">Login</a>
</div>
<!-- Main Page -->
<!-- Get it? D-Log? Like digital log? -->
<div class="dlog">
<div class="post">
<h2>About</h2>
<p>
Hi! I'm 0x01fe. This website is a personal project that allows me to express my thoughts online about things I like and also gives me something to program and tinker with on my spare time. If you want to contact me try hitting me up on discord at <u>0x01fe</u>.
</p>
<br>
<h2>Why 0x01fe?</h2>
<p>
This is a pretty common question I get regarding my username so I thought I'd put a little section here about it. The thought process behind the username was "I like computers so what's a computer related username I could have?" and the first thing that came to mind was the master boot record boot sector (100% related to that other <a href="https://masterbootrecord.bandcamp.com/"><i>Master Boot Record</i></a>). So I opened up the <a href="https://en.wikipedia.org/wiki/Master_boot_record">Wikipedia Page</a> on the master boot record and scrolled until something called out to me. When I saw the starting byte of the boot signature in hex was <b>0x01fe</b> I thought "yeah that'd work", and I've stuck with it.
</p>
</div>
<h1>{{ title }}</h1>
<p>{{ status|safe }}</p>
<h1>Stuff</h1>
<ul class="sidebar">
<li><a href="/"><u>Home</u></a></li>
<li><a href="/category/games/">Games</a></li>
<li><a href="/music/">Music</a></li>
<li><a href="/category/motion-pictures/">Motion Picture</a></li>
<li><a href="/programming/">Programming</a></li>
<li><a href="/about/">About</a></li>
</ul>
<div class="dlog">
<div class="post">
<h2>About</h2>
<p>
Hi! I'm 0x01fe. This website is a personal project that allows me to express my thoughts online about things I like and also gives me something to program and tinker with on my spare time. If you want to contact me try hitting me up on discord at <u>0x01fe</u>.
</p>
<br>
<h2>Why 0x01fe?</h2>
<p>
This is a pretty common question I get regarding my username so I thought I'd put a little section here about it. The thought process behind the username was "I like computers so what's a computer related username I could have?" and the first thing that came to mind was the master boot record boot sector (100% related to that other <a href="https://masterbootrecord.bandcamp.com/"><i>Master Boot Record</i></a>). So I opened up the <a href="https://en.wikipedia.org/wiki/Master_boot_record">Wikipedia Page</a> on the master boot record and scrolled until something called out to me. When I saw the starting byte of the boot signature in hex was <b>0x01fe</b> I thought "yeah that'd work", and I've stuck with it.
</p>
</div>
</div>
</body>

View File

@ -6,34 +6,24 @@
<title>0x01fe.net - {{ title }}</title>
</header>
<body>
<div style="background-image: url({{ header_background_image }});" class="header">
<h1>{{ title }}</h1>
{{ status|safe }}
</div>
<div class="container">
<!-- Sidebar -->
<h1>Stuff</h1>
<ul class="sidebar">
<li><a href="/"><u>Home</u></a></li>
<li><a href="/category/games/">Games</a></li>
<li><a href="/music/">Music</a></li>
<li><a href="/category/motion-pictures/">Motion Picture</a></li>
<li><a href="/programming/">Programming</a></li>
<li><a href="/about/">About</a></li>
</ul>
<!-- Main Page -->
<!-- Get it? D-Log? Like digital log? -->
<div class="dlog">
{% for post in posts %}
<div class="post">
<div class="post-date">
{{ post.date_str }}
</div>
{{ post.body|safe }}
</div>
{% endfor %}
<h1>{{ title }}</h1>
<p>{{ status|safe }}</p>
<h1>Stuff</h1>
<ul class="sidebar">
<li><a href="/"><u>Home</u></a></li>
<li><a href="/category/games/">Games</a></li>
<li><a href="/music/">Music</a></li>
<li><a href="/category/motion-pictures/">Motion Picture</a></li>
<li><a href="/programming/">Programming</a></li>
<li><a href="/about/">About</a></li>
</ul>
{% for post in posts %}
<div class="post">
<div class="post-date">
{{ post.date_str }}
</div>
{{ post.body|safe }}
</div>
</div>
{% endfor %}
</body>
</html>

View File

@ -2,51 +2,46 @@
<html lang="en">
<header>
<link rel="shortcut icon" href="index_favicon.ico">
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
<title>0x01fe.net - Music</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style2.css') }}">
<title>0x01fe.net - {{ title }}</title>
</header>
<body>
<div class="header">
<h1>Music</h1>
{{ status|safe }}
</div>
<div class="container">
<!-- Sidebar -->
<div class="sidebar">
<a href="/"><u>Home</u></a><br>
<a href="/category/games/">Games</a><br>
<a href="/music/">Music</a><br>
<a href="/category/motion-pictures/">Motion Picture</a><br>
<a href="/programming/">Programming</a><br>
<a href="/about/">About</a><br>
<a href="/login/">Login</a>
</div>
<h1>{{ title }}</h1>
<p>{{ status|safe }}</p>
<h1>Stuff</h1>
<ul class="sidebar">
<li><a href="/"><u>Home</u></a></li>
<li><a href="/category/games/">Games</a></li>
<li><a href="/music/">Music</a></li>
<li><a href="/category/motion-pictures/">Motion Picture</a></li>
<li><a href="/programming/">Programming</a></li>
<li><a href="/about/">About</a></li>
</ul>
<!-- Main Page -->
<!-- Get it? D-Log? Like digital log? -->
<div class="dlog">
{% for post in posts %}
<div class="post">
<div class="post-date">
{{ post.date_str }}
</div>
{{ post.body|safe }}
<!-- Main Page -->
<!-- Get it? D-Log? Like digital log? -->
<div class="dlog">
{% for post in posts %}
<div class="post">
<div class="post-date">
{{ post.date_str }}
</div>
{% endfor %}
</div>
{{ post.body|safe }}
</div>
{% endfor %}
</div>
<div class="albums">
<h1>Top Albums</h1>
<div class="real-albums">
{% for album in top_albums %}
<a title="{{ album.album_name}} by {{ album.artist_name }} - {{ album.listen_time }} Hours">
<img src="{{ album.album_cover }}">
</a>
{% if loop.index % 3 == 0 %}
<br>
{% endif %}
{% endfor %}
</div>
<div class="albums">
<h1>Top Albums</h1>
<div class="real-albums">
{% for album in top_albums %}
<a title="{{ album.album_name}} by {{ album.artist_name }} - {{ album.listen_time }} Hours">
<img src="{{ album.album_cover }}">
</a>
{% if loop.index % 3 == 0 %}
<br>
{% endif %}
{% endfor %}
</div>
</div>
</body>

View File

@ -2,44 +2,38 @@
<html lang="en">
<header>
<link rel="shortcut icon" href="index_favicon.ico">
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
<title>0x01fe.net - Programming</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style2.css') }}">
<title>0x01fe.net - {{ title }}</title>
</header>
<body>
<div class="header">
<h1>Programming</h1>
{{ status|safe }}
</div>
<div class="container">
<!-- Sidebar -->
<div class="sidebar">
<a href="/"><u>Home</u></a><br>
<a href="/category/games/">Games</a><br>
<a href="/music/">Music</a><br>
<a href="/category/motion-pictures/">Motion Picture</a><br>
<a href="/programming/">Programming</a><br>
<a href="/about/">About</a><br>
<a href="/login/">Login</a>
</div>
<!-- Main Page -->
<!-- Get it? D-Log? Like digital log? -->
<div class="dlog">
{% for post in posts %}
<div class="post">
<div class="post-date">
{{ post.date_str }}
</div>
{{ post.body|safe }}
<h1>{{ title }}</h1>
<p>{{ status|safe }}</p>
<h1>Stuff</h1>
<ul class="sidebar">
<li><a href="/"><u>Home</u></a></li>
<li><a href="/category/games/">Games</a></li>
<li><a href="/music/">Music</a></li>
<li><a href="/category/motion-pictures/">Motion Picture</a></li>
<li><a href="/programming/">Programming</a></li>
<li><a href="/about/">About</a></li>
</ul>
<!-- Main Page -->
<!-- Get it? D-Log? Like digital log? -->
<div class="dlog">
{% for post in posts %}
<div class="post">
<div class="post-date">
{{ post.date_str }}
</div>
{% endfor %}
</div>
{{ post.body|safe }}
</div>
{% endfor %}
</div>
<!-- Other Sidear -->
<div class="rightbar">
<h2>Other</h2>
<a href="">Technologies I Use</a>
</div>
<!-- Other Sidear -->
<div class="rightbar">
<h2>Other</h2>
<a href="">Technologies I Use</a>
</div>
</body>
</html>