forked from blek/world
1
0
Fork 0

add a caterpillar page

This commit is contained in:
blek 2023-12-22 23:25:00 +10:00
parent 6af6158057
commit 5bf0f82684
Signed by: blek
GPG Key ID: 14546221E3595D0C
5 changed files with 43 additions and 19 deletions

View File

@ -34,3 +34,7 @@ I like webrings.
<a href="https://webring.haaien.xyz/#1" target="_blank" rel="noopener"><img src="/hairing.gif" alt="A button saying haaien webring" height='31px' width='88px'/></a> <a href="https://webring.haaien.xyz/#1" target="_blank" rel="noopener"><img src="/hairing.gif" alt="A button saying haaien webring" height='31px' width='88px'/></a>
<a href="https://acingtheinternet.netlify.app" target="_blank" rel="noopener"><img src="/acenow.gif" alt="A button saying asexuals now" height='31px' width='88px'></a> <a href="https://acingtheinternet.netlify.app" target="_blank" rel="noopener"><img src="/acenow.gif" alt="A button saying asexuals now" height='31px' width='88px'></a>
---
Did you ever wonder what a [caterpillar](/caterpillar) looks like?

5
content/caterpillar.md Normal file
View File

@ -0,0 +1,5 @@
+++
title = 'Caterpillar'
+++
# Caterpillar

View File

@ -13,10 +13,6 @@
<div class='screen bg'></div> <div class='screen bg'></div>
<div class='screen content'> <div class='screen content'>
<h1 style='margin-bottom:0.25em'>blek! World</h1> <h1 style='margin-bottom:0.25em'>blek! World</h1>
<h2>{{ section.title }}</h2>
<noscript>
Your browser doesn't support JS. This is so cool!
</noscript>
{% block content %} {% endblock %} {% block content %} {% endblock %}
@ -27,20 +23,6 @@
</a> </a>
</p> </p>
</div> </div>
<div class='screen flicker'></div>
<div class='screen fader'>
<p>
<img src='/load.gif' width='46px' height='48px' style='margin-bottom:8px' /><br/>
Loading...
<span style='font-size:50%;display:block;margin-top:3em;color:#777777 !important'>
Credit for loading gif to
<a href='https://bdragon1727.itch.io/pixel-loading-pack-3'>
BDragon1727
</a>
</span>
</p>
</div>
<script src='/script/cursor.min.js' type='application/javascript'></script> <script src='/script/cursor.min.js' type='application/javascript'></script>
<script> <script>

View File

@ -2,8 +2,27 @@
{% block content %} {% block content %}
<h2>{{ section.title }}</h2>
<noscript>
Your browser doesn't support JS. This is so cool!
</noscript>
<div class='md-content'> <div class='md-content'>
{{ section.content | safe }} {{ section.content | safe }}
</div> </div>
<div class='screen fader'>
<p>
<img src='/load.gif' width='46px' height='48px' style='margin-bottom:8px' /><br/>
Loading...
<span style='font-size:50%;display:block;margin-top:3em;color:#777777 !important'>
Credit for loading gif to
<a href='https://bdragon1727.itch.io/pixel-loading-pack-3'>
BDragon1727
</a>
</span>
</p>
</div>
{% endblock content %} {% endblock content %}

14
templates/page.html Normal file
View File

@ -0,0 +1,14 @@
{% extends "base.html" %}
{% block content %}
<h2>{{ page.title }}</h2>
<noscript>
Your browser doesn't support JS. This is so cool!
</noscript>
<div class='md-content'>
{{ page.content | safe }}
</div>
{% endblock content %}