Compare commits
4 Commits
ddf9fcae13
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| ef8711b0e1 | |||
| c3de930b50 | |||
| 1d1e4d863e | |||
| 3b47701c18 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -10,3 +10,4 @@ hitcount.txt
|
|||||||
data
|
data
|
||||||
images/*
|
images/*
|
||||||
webroot/custom.css
|
webroot/custom.css
|
||||||
|
webroot/robots.txt
|
||||||
|
|||||||
@@ -7,6 +7,7 @@
|
|||||||
<a if='edit-account-link' href="<%= config.edit_account_base_url %>/<%= userID %>">
|
<a if='edit-account-link' href="<%= config.edit_account_base_url %>/<%= userID %>">
|
||||||
<img class='icon' src='/icons/edit.png' alt='<%= locale.edit_account %>' title='<%= locale.edit_account %>'>
|
<img class='icon' src='/icons/edit.png' alt='<%= locale.edit_account %>' title='<%= locale.edit_account %>'>
|
||||||
</a>
|
</a>
|
||||||
|
|
|
||||||
<a id='rss-link' href="/user/<%= user.username %>/rss">
|
<a id='rss-link' href="/user/<%= user.username %>/rss">
|
||||||
<img class='icon' src='/icons/rss.png' alt="<%= locale.rss_feed %>" title='<%= locale.rss_feed %>'>
|
<img class='icon' src='/icons/rss.png' alt="<%= locale.rss_feed %>" title='<%= locale.rss_feed %>'>
|
||||||
</a>
|
</a>
|
||||||
|
|||||||
@@ -4,9 +4,9 @@
|
|||||||
<%- include('../partials/head'); %>
|
<%- include('../partials/head'); %>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="header">
|
<header id="site-header">
|
||||||
<%- include("../headers/site_wide") %>
|
<%- include("../headers/site_wide") %>
|
||||||
</div>
|
</header>
|
||||||
<div id="comment">
|
<div id="comment">
|
||||||
<%- include("../partials/comment"); %>
|
<%- include("../partials/comment"); %>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -4,13 +4,13 @@
|
|||||||
<%- include('../partials/head'); %>
|
<%- include('../partials/head'); %>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="header">
|
<header id="site-header">
|
||||||
<%- include("../headers/site_wide") %>
|
<%- include("../headers/site_wide") %>
|
||||||
</div>
|
</header>
|
||||||
<div id="posts">
|
<div id="posts">
|
||||||
<%- include('../posts/post'); %>
|
<%- include('../posts/post'); %>
|
||||||
</div>
|
</div>
|
||||||
<footer>
|
<footer id='footer'>
|
||||||
<%- include('../partials/footer'); %>
|
<%- include('../partials/footer'); %>
|
||||||
</footer>
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
@@ -4,10 +4,12 @@
|
|||||||
<%- include('../partials/head'); %>
|
<%- include('../partials/head'); %>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="header">
|
<header id="site-header">
|
||||||
<%- include('../headers/site_wide'); %>
|
<%- include('../headers/site_wide'); %>
|
||||||
|
</header>
|
||||||
|
<header id='page-header'>
|
||||||
<%- include('../headers/tag'); %>
|
<%- include('../headers/tag'); %>
|
||||||
</div>
|
</header>
|
||||||
<div id="posts">
|
<div id="posts">
|
||||||
<% for (let index = posts.length - 1; index >= 0; index--) { %>
|
<% for (let index = posts.length - 1; index >= 0; index--) { %>
|
||||||
<% if ( posts[index].deleted != true) { %>
|
<% if ( posts[index].deleted != true) { %>
|
||||||
@@ -19,7 +21,7 @@
|
|||||||
<% } %>
|
<% } %>
|
||||||
<% } %>
|
<% } %>
|
||||||
</div>
|
</div>
|
||||||
<footer>
|
<footer id='footer'>
|
||||||
<%- include('../partials/footer'); %>
|
<%- include('../partials/footer'); %>
|
||||||
</footer>
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
@@ -4,10 +4,12 @@
|
|||||||
<%- include('../partials/head'); %>
|
<%- include('../partials/head'); %>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="header">
|
<header id="site-header">
|
||||||
<%- include("../headers/site_wide") %>
|
<%- include("../headers/site_wide") %>
|
||||||
|
</header>
|
||||||
|
<header id='page-header'>
|
||||||
<%- include('../headers/timeline'); %>
|
<%- include('../headers/timeline'); %>
|
||||||
</div>
|
</header>
|
||||||
<form method="POST" action="/submit_nothing" style="display:none">
|
<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 -->
|
<!-- 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">
|
<input type="hidden" name="post_index" value="0">
|
||||||
@@ -29,7 +31,7 @@
|
|||||||
<textarea placeholder="comment" name="content"></textarea><br/>
|
<textarea placeholder="comment" name="content"></textarea><br/>
|
||||||
<button type="submit">Submit</button>
|
<button type="submit">Submit</button>
|
||||||
</form>
|
</form>
|
||||||
<footer>
|
<footer id='footer'>
|
||||||
<%- include('../partials/footer'); %>
|
<%- include('../partials/footer'); %>
|
||||||
</footer>
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
@@ -4,10 +4,12 @@
|
|||||||
<%- include('../partials/head'); %>
|
<%- include('../partials/head'); %>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="header">
|
<header id="site-header">
|
||||||
<%- include("../headers/site_wide") %>
|
<%- include("../headers/site_wide") %>
|
||||||
|
</header>
|
||||||
|
<header id='page-header'>
|
||||||
<%- include('../headers/user'); %>
|
<%- include('../headers/user'); %>
|
||||||
</div>
|
</header>
|
||||||
<div id="posts">
|
<div id="posts">
|
||||||
<% for (let index = posts.length - 1; index >= 0; index--) { %>
|
<% for (let index = posts.length - 1; index >= 0; index--) { %>
|
||||||
<% if (posts[index].userID == userID) { %>
|
<% if (posts[index].userID == userID) { %>
|
||||||
@@ -15,7 +17,7 @@
|
|||||||
<% } %>
|
<% } %>
|
||||||
<% } %>
|
<% } %>
|
||||||
</div>
|
</div>
|
||||||
<footer>
|
<footer id='footer'>
|
||||||
<%- include('../partials/footer'); %>
|
<%- include('../partials/footer'); %>
|
||||||
</footer>
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
@@ -1,16 +1,21 @@
|
|||||||
body {
|
body {
|
||||||
max-width: 900px;
|
max-width: 900px;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
}
|
}
|
||||||
#header {
|
#site-header {
|
||||||
text-align: center;
|
margin-top: 10px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
#footer {
|
||||||
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
.icon {
|
.icon {
|
||||||
width: 20px;
|
width: 15px;
|
||||||
}
|
}
|
||||||
input, textarea, button {
|
input, textarea, button {
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
|
field-sizing: content; /* Only supported by Chromium */
|
||||||
}
|
}
|
||||||
a {
|
a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
|||||||
Reference in New Issue
Block a user