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