2023-06-07 17:21:42 +00:00
{% load static %}
2023-06-07 09:53:21 +00:00
<!DOCTYPE html>
< html lang = "en" >
2023-07-14 18:05:38 +00:00
{% include "head.html" %}
2023-06-07 09:53:21 +00:00
< body id = "index" >
2023-07-14 18:05:38 +00:00
{% include "fediring.html" %}
2023-06-07 09:53:21 +00:00
< div id = "noscript" >
< div class = "centercubeplease" >
2023-07-14 18:05:38 +00:00
< h1 >
I'm bizcochito, hey!
< / h1 >
< h2 >
-Pages:
< / h2 >
2023-06-07 17:21:42 +00:00
< ul class = "disclosure-closed" >
2023-07-14 18:05:38 +00:00
< li >
2023-07-26 10:30:24 +00:00
< a href = " {% url 'webpage:signbook' %} " > Signbook< / a >
2023-07-14 18:05:38 +00:00
< / li >
< / ul >
< h2 >
-Banners
< / h2 >
2023-06-07 17:55:25 +00:00
< div class = "img" >
{% for gif in banger_list %}
2023-07-26 10:30:24 +00:00
< img style = "max-height:50px;width:auto" src = "{% static " icons / banner / " % } { { gif . name } } " alt = "{{ gif.url }}" / >
2023-06-07 17:55:25 +00:00
{% endfor %}
< / div >
2023-07-14 18:05:38 +00:00
< h2 >
-Funni gifs
< / h2 >
2023-06-07 17:21:42 +00:00
< div class = "img" >
2023-06-07 09:53:21 +00:00
{% for gif in gif_list %}
2023-07-26 10:30:24 +00:00
< img style = "max-height:50px;width:auto" src = "{% static " icons / gif / " % } { { gif . name } } " alt = "{{ gif.url }}" / >
2023-06-07 09:53:21 +00:00
{% endfor %}
2023-06-07 17:21:42 +00:00
< / div >
2023-07-14 18:05:38 +00:00
< h2 >
-Frens:
< / h2 >
2023-06-07 17:21:42 +00:00
< div class = "img" >
2023-06-07 09:53:21 +00:00
{% for banner in banner_list %}
2023-07-14 18:05:38 +00:00
< a href = "https://{{ banner.url }}" >
2023-07-26 10:30:24 +00:00
< img style = "height:31px; width:81px" src = "{% static " icons / 88x31 / " % } { { banner . name } } " alt = "{{ banner.url }}" / >
2023-07-14 18:05:38 +00:00
< / a >
2023-06-07 09:53:21 +00:00
{% endfor %}
2023-06-07 17:21:42 +00:00
< / div >
2023-07-14 18:05:38 +00:00
< h2 >
2023-07-20 11:06:56 +00:00
-Another banner that is unused:
2023-07-14 18:05:38 +00:00
< / h2 >
2023-06-07 17:21:42 +00:00
< div class = "img" >
2023-07-20 11:06:56 +00:00
< a href = "" >
2023-07-26 10:30:24 +00:00
< img style = "height:33px;
width:81px"
src="{% static 'icons/coconut.png' %}"
alt="cronut.cafe/~bizcochito" />
2023-07-14 18:05:38 +00:00
< / a >
2023-06-07 17:21:42 +00:00
< / div >
2023-07-14 18:05:38 +00:00
< h2 >
-NEW BANNER:
< / h2 >
2023-06-07 17:21:42 +00:00
< div class = "img" >
2023-07-14 18:05:38 +00:00
< a href = "https://yari.fai.st" >
2023-07-26 10:30:24 +00:00
< img style = "height:33px;
width:81px"
src="{% static 'icons/bizcochito.gif' %}"
alt="yari.fai.st" />
2023-07-14 18:05:38 +00:00
< / a >
2023-06-07 17:21:42 +00:00
< / div >
2023-06-07 09:53:21 +00:00
< / div >
< div class = "centerade" >
2023-07-14 18:05:38 +00:00
< a >
2023-07-26 10:30:24 +00:00
< img src = "{% static " ads / hor / " % } { { ad } } " alt = "ad" / >
2023-07-14 18:05:38 +00:00
< / a >
2023-06-07 09:53:21 +00:00
< / div >
< / div >
< script >
function nojs() {
document.getElementById("noscript").style.display = "block";
document.getElementById("nojs").style.display = "none";
}
document.getElementById("noscript").style.display = "none";
document.write(
'< div id = "nojs" class = "centercubeplease" > < p > To see the website please disable JS< / p > < p > < a href = "#" onclick = "nojs()" > I cant do that, daddy google does not LET me :(< / a > < / p > < / div > '
);
< / script >
< / body >
< / html >