removed all css and comments stuff
This commit is contained in:
parent
e747749e70
commit
2b466e98ef
@ -33,6 +33,10 @@
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.post {
|
||||
margin-bottom: 8em;
|
||||
}
|
||||
|
||||
.post-date {
|
||||
float: right;
|
||||
}
|
||||
|
||||
@ -2,28 +2,21 @@
|
||||
<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? -->
|
||||
<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>
|
||||
@ -37,6 +30,5 @@
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@ -6,12 +6,8 @@
|
||||
<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 -->
|
||||
<p>{{ status|safe }}</p>
|
||||
<h1>Stuff</h1>
|
||||
<ul class="sidebar">
|
||||
<li><a href="/"><u>Home</u></a></li>
|
||||
@ -21,10 +17,6 @@
|
||||
<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">
|
||||
@ -33,7 +25,5 @@
|
||||
{{ post.body|safe }}
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@ -2,25 +2,21 @@
|
||||
<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? -->
|
||||
@ -48,6 +44,5 @@
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@ -2,26 +2,21 @@
|
||||
<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>
|
||||
|
||||
<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">
|
||||
@ -40,6 +35,5 @@
|
||||
<h2>Other</h2>
|
||||
<a href="">Technologies I Use</a>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user