testtpl
This commit is contained in:
parent
8f708d25a3
commit
54dd0968b1
33
s/test.css
Normal file
33
s/test.css
Normal file
|
@ -0,0 +1,33 @@
|
|||
body {
|
||||
width: 100%;
|
||||
margin: 1em auto 3em auto;
|
||||
background-color: #262626;
|
||||
color: #fff;
|
||||
font-family: Monospace;
|
||||
}
|
||||
.body {
|
||||
width: 90%;
|
||||
margin: 1em auto 3em auto;
|
||||
background-color: #262626;
|
||||
color: #fff;
|
||||
font-family: Monospace;
|
||||
}
|
||||
.thumb {
|
||||
border: 0;
|
||||
margin: 0 8px 8px 0;
|
||||
float: left;
|
||||
border: 2px solid #4c4a4a;
|
||||
}
|
||||
.thumb:hover {
|
||||
opacity: 0.7;
|
||||
}
|
||||
.clear {
|
||||
clear: both;
|
||||
padding: 1em 0;
|
||||
}
|
||||
a {
|
||||
color: #9f0;
|
||||
}
|
||||
a:hover {
|
||||
color: #74c100;
|
||||
}
|
16
s/test.tpl.html
Normal file
16
s/test.tpl.html
Normal file
|
@ -0,0 +1,16 @@
|
|||
<!DOCTYPE blah>
|
||||
<html>
|
||||
<head>
|
||||
<title>f0ck me!</title>
|
||||
<link rel="icon" type="image/gif" href="./s/favicon.gif" />
|
||||
<link rel="stylesheet" type="text/css" href="./s/test.css">
|
||||
</head>
|
||||
<div class="body">
|
||||
{% for item in items %}
|
||||
<a href="./{{ item.id }}" title="{{ item.mime }}"><img class="thumb" src="./t/{{ item.id }}.png" /></a>
|
||||
{% endfor %}
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -45,6 +45,19 @@ function Websrv(tbot, tsql, tcfg, tlib) {
|
|||
res.end(tpl(data), 'utf-8');
|
||||
});
|
||||
}
|
||||
|
||||
else if(filePath == "./test") { // (test)mainpage
|
||||
var tpl = swig.compile(templates.test);
|
||||
var data = { items: [] };
|
||||
sql.query("select `id`,`mime` from `f0ck`.`items` order by `id` desc limit 20", (err, rows, fields) => {
|
||||
rows.forEach((e,i,a) => {
|
||||
data.items.push({ "id": e.id, "mime": e.mime });
|
||||
});
|
||||
res.writeHead(200, { 'Content-Type': 'text/html' });
|
||||
res.end(tpl(data), 'utf-8');
|
||||
});
|
||||
}
|
||||
|
||||
else if(Number.isInteger(parseInt(url))) { // itempage
|
||||
var query = "select * from `f0ck`.`items` where `id` = ? limit 1; " // get item
|
||||
+ "select `id` from `f0ck`.`items` where `id` = (select min(`id`) from `f0ck`.`items` where `id` > ?); " // get previous item
|
||||
|
@ -249,6 +262,7 @@ Websrv.prototype.getTpls = () => {
|
|||
"item": fs.readFileSync("./s/item.tpl.html", "utf-8"),
|
||||
"how": fs.readFileSync("./s/how.tpl.html", "utf-8"),
|
||||
"contact": fs.readFileSync("./s/contact.tpl.html", "utf-8"),
|
||||
"scripts": fs.readFileSync("./s/scripts.tpl.html", "utf-8")
|
||||
"scripts": fs.readFileSync("./s/scripts.tpl.html", "utf-8"),
|
||||
"test": fs.readFileSync("./s/test.tpl.html", "utf-8")
|
||||
};
|
||||
};
|
Loading…
Reference in New Issue
Block a user