48 lines
1.1 KiB
Plaintext
Executable File
48 lines
1.1 KiB
Plaintext
Executable File
{% extends "base.njk" %}
|
|
{% block body %}
|
|
<div class="centercubeplease">
|
|
<h1>
|
|
I'm bizcochito, hey!
|
|
</h1>
|
|
<h2>
|
|
Banners
|
|
</h2>
|
|
{% from "imagelist.njk" import images_list as il1 %}
|
|
{{ il1(image("banner") ) }}
|
|
<h2>
|
|
Funni gifs
|
|
</h2>
|
|
{% from "imagelist.njk" import images_list as il2 %}
|
|
{{ il2(image("gif") ) }}
|
|
<h2>
|
|
Frens
|
|
</h2>
|
|
{% from "imagelist.njk" import images_list as il3 %}
|
|
{{ il3(image("8831") ) }}
|
|
<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>
|
|
{% from "ad.njk" import adimage %}
|
|
{{ adimage(ad() ) }}
|
|
{% endblock body %}
|