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; font-size: 18px;
} }
.post {
margin-bottom: 8em;
}
.post-date { .post-date {
float: right; float: right;
} }

View File

@ -2,40 +2,32 @@
<html lang="en"> <html lang="en">
<header> <header>
<link rel="shortcut icon" href="index_favicon.ico"> <link rel="shortcut icon" href="index_favicon.ico">
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}"> <link rel="stylesheet" href="{{ url_for('static', filename='style2.css') }}">
<title>0x01fe.net - About</title> <title>0x01fe.net - {{ title }}</title>
</header> </header>
<body> <body>
<div class="header"> <h1>{{ title }}</h1>
<h1>0x01fe.net</h1> <p>{{ status|safe }}</p>
{{ status|safe }} <h1>Stuff</h1>
</div> <ul class="sidebar">
<div class="container"> <li><a href="/"><u>Home</u></a></li>
<!-- Sidebar --> <li><a href="/category/games/">Games</a></li>
<div class="sidebar"> <li><a href="/music/">Music</a></li>
<a href="/"><u>Home</u></a><br> <li><a href="/category/motion-pictures/">Motion Picture</a></li>
<a href="/category/games/">Games</a><br> <li><a href="/programming/">Programming</a></li>
<a href="/music/">Music</a><br> <li><a href="/about/">About</a></li>
<a href="/category/motion-pictures/">Motion Picture</a><br> </ul>
<a href="/programming/">Programming</a><br> <div class="dlog">
<a href="/about/">About</a><br> <div class="post">
<a href="/login/">Login</a> <h2>About</h2>
</div> <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>.
<!-- Main Page --> </p>
<!-- Get it? D-Log? Like digital log? --> <br>
<div class="dlog"> <h2>Why 0x01fe?</h2>
<div class="post"> <p>
<h2>About</h2> 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> </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> </div>
</div> </div>
</body> </body>

View File

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

View File

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

View File

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