bizcochito.onion/templates/index.njk

48 lines
1.1 KiB
Plaintext
Raw Normal View History

2024-06-09 07:22:05 +00:00
{% extends "base.njk" %}
{% block body %}
<div class="centercubeplease">
<h1>
I'm bizcochito, hey!
</h1>
<h2>
Banners
</h2>
2024-07-03 07:47:47 +00:00
{% from "imagelist.njk" import images_list as il1 %}
{{ il1(image("banner") ) }}
2024-06-09 07:22:05 +00:00
<h2>
Funni gifs
</h2>
2024-07-03 07:47:47 +00:00
{% from "imagelist.njk" import images_list as il2 %}
2024-07-07 10:57:01 +00:00
{{ il2(image("gif"), height=50 ) }}
2024-06-09 07:22:05 +00:00
<h2>
Frens
</h2>
2024-07-03 07:47:47 +00:00
{% from "imagelist.njk" import images_list as il3 %}
{{ il3(image("8831") ) }}
2024-06-09 07:22:05 +00:00
<h2>
Another banner that is unused
</h2>
<div class="img">
<a href="">
<img style="height:33px;
width:81px"
src="/static/icons/coconut.png"
alt="cronut.cafe/~bizcochito" />
</a>
</div>
<h2>
BANNER
</h2>
<div class="img">
<a href="https://yari.fai.st">
<img style="height:33px;
width:81px"
src="/static/icons/bizcochito.gif"
alt="yari.fai.st" />
</a>
</div>
</div>
2024-07-03 07:47:47 +00:00
{% from "ad.njk" import adimage %}
{{ adimage(ad() ) }}
{% endblock body %}