forked from blek/world
1
0
Fork 0

add an option to disable loading

This commit is contained in:
b1ek 2024-03-03 19:57:53 +10:00
parent ab24d9eb3d
commit 79785ce53a
Signed by: blek
GPG Key ID: 14546221E3595D0C
2 changed files with 26 additions and 12 deletions

View File

@ -37,3 +37,15 @@ $ zola serve
...as per [zola docs](https://www.getzola.org/documentation/getting-started/overview)
## how to disable loading
go to `content/index.md`, and in the `+++` blocks, set `extra.noload` to `true`.
like this:
```toml
+++
title = "Welcome"
[extra]
noload = true
+++
```

View File

@ -15,18 +15,20 @@
{% block root %}
<div class='screen fader'>
<p>
<img src='/load.gif' width='46px' height='48px' style='margin-bottom:8px' /><br/>
Loading . . .
{% if page.extra.noload %}
<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>
<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>
{% endif %}
{% endblock root %}