Compare commits
2 Commits
ddf9fcae13
...
1d1e4d863e
| Author | SHA1 | Date | |
|---|---|---|---|
| 1d1e4d863e | |||
| 3b47701c18 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -10,3 +10,4 @@ hitcount.txt
|
||||
data
|
||||
images/*
|
||||
webroot/custom.css
|
||||
webroot/robots.txt
|
||||
|
||||
@@ -4,9 +4,9 @@
|
||||
<%- include('../partials/head'); %>
|
||||
</head>
|
||||
<body>
|
||||
<div id="header">
|
||||
<header id="header">
|
||||
<%- include("../headers/site_wide") %>
|
||||
</div>
|
||||
</header>
|
||||
<div id="comment">
|
||||
<%- include("../partials/comment"); %>
|
||||
</div>
|
||||
|
||||
@@ -4,13 +4,13 @@
|
||||
<%- include('../partials/head'); %>
|
||||
</head>
|
||||
<body>
|
||||
<div id="header">
|
||||
<header id="header">
|
||||
<%- include("../headers/site_wide") %>
|
||||
</div>
|
||||
</header>
|
||||
<div id="posts">
|
||||
<%- include('../posts/post'); %>
|
||||
</div>
|
||||
<footer>
|
||||
<footer id='footer'>
|
||||
<%- include('../partials/footer'); %>
|
||||
</footer>
|
||||
</body>
|
||||
|
||||
@@ -4,10 +4,10 @@
|
||||
<%- include('../partials/head'); %>
|
||||
</head>
|
||||
<body>
|
||||
<div id="header">
|
||||
<header id="header">
|
||||
<%- include('../headers/site_wide'); %>
|
||||
<%- include('../headers/tag'); %>
|
||||
</div>
|
||||
</header>
|
||||
<div id="posts">
|
||||
<% for (let index = posts.length - 1; index >= 0; index--) { %>
|
||||
<% if ( posts[index].deleted != true) { %>
|
||||
@@ -19,7 +19,7 @@
|
||||
<% } %>
|
||||
<% } %>
|
||||
</div>
|
||||
<footer>
|
||||
<footer id='footer'>
|
||||
<%- include('../partials/footer'); %>
|
||||
</footer>
|
||||
</body>
|
||||
|
||||
@@ -4,10 +4,10 @@
|
||||
<%- include('../partials/head'); %>
|
||||
</head>
|
||||
<body>
|
||||
<div id="header">
|
||||
<header id="header">
|
||||
<%- include("../headers/site_wide") %>
|
||||
<%- include('../headers/timeline'); %>
|
||||
</div>
|
||||
</header>
|
||||
<form method="POST" action="/submit_nothing" style="display:none">
|
||||
<!-- Form is used to help mitigate spam as it is the first form on the front page -->
|
||||
<input type="hidden" name="post_index" value="0">
|
||||
@@ -29,7 +29,7 @@
|
||||
<textarea placeholder="comment" name="content"></textarea><br/>
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
<footer>
|
||||
<footer id='footer'>
|
||||
<%- include('../partials/footer'); %>
|
||||
</footer>
|
||||
</body>
|
||||
|
||||
@@ -4,10 +4,10 @@
|
||||
<%- include('../partials/head'); %>
|
||||
</head>
|
||||
<body>
|
||||
<div id="header">
|
||||
<header id="header">
|
||||
<%- include("../headers/site_wide") %>
|
||||
<%- include('../headers/user'); %>
|
||||
</div>
|
||||
</header>
|
||||
<div id="posts">
|
||||
<% for (let index = posts.length - 1; index >= 0; index--) { %>
|
||||
<% if (posts[index].userID == userID) { %>
|
||||
@@ -15,7 +15,7 @@
|
||||
<% } %>
|
||||
<% } %>
|
||||
</div>
|
||||
<footer>
|
||||
<footer id='footer'>
|
||||
<%- include('../partials/footer'); %>
|
||||
</footer>
|
||||
</body>
|
||||
|
||||
@@ -3,14 +3,19 @@ body {
|
||||
margin: auto;
|
||||
}
|
||||
#header {
|
||||
margin-top: 10px;
|
||||
text-align: center;
|
||||
}
|
||||
#footer {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.icon {
|
||||
width: 20px;
|
||||
width: 15px;
|
||||
}
|
||||
input, textarea, button {
|
||||
border: none;
|
||||
border-radius: 5px;
|
||||
field-sizing: content; /* Only supported by Chromium */
|
||||
}
|
||||
a {
|
||||
text-decoration: none;
|
||||
|
||||
Reference in New Issue
Block a user