This commit is contained in:
jkhsjdhjs 2016-08-17 23:23:26 +02:00
commit 96fb99d16b
3 changed files with 13 additions and 4 deletions

2
.gitignore vendored
View File

@ -1,3 +1,3 @@
node_modules/ node_modules/
cfg.cfg cfg.json
b/ b/

View File

@ -7,7 +7,10 @@
</head> </head>
<body> <body>
<div class="navbar"><a href="/">f0ck.me</a> | <a href="/how">how to</a> | <a href="/contact">Contact</a></div><br /> <div class="navbar"><a href="/">f0ck.me</a> | <a href="/how">how to</a> | <a href="/contact">Contact</a></div><br />
{% for item in items %}<div class="mrhankyisteinneger"><a href="./{{ item }}"><img src="./t/{{ item }}.png" /></a></div> <div class="centeredthumbs">
{% for item in items %}
<div class="mrhankyisteinneger"><a href="./{{ item }}"><img src="./t/{{ item }}.png" /></a></div>
{% endfor %} {% endfor %}
</div>
</html> </html>
</body> </body>

View File

@ -51,4 +51,10 @@ a:hover {
} }
code { code {
color: #9df943; color: #9df943;
} }
.centeredthumbs {
display: flex;
align-items: center;
justify-content: center;
}