add an option to disable loading
This commit is contained in:
parent
ab24d9eb3d
commit
79785ce53a
12
README.md
12
README.md
|
@ -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
|
||||
+++
|
||||
```
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
|
||||
{% block root %}
|
||||
|
||||
{% if page.extra.noload %}
|
||||
<div class='screen fader'>
|
||||
<p>
|
||||
<img src='/load.gif' width='46px' height='48px' style='margin-bottom:8px' /><br/>
|
||||
|
@ -28,5 +29,6 @@
|
|||
</span>
|
||||
</p>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
{% endblock root %}
|
Loading…
Reference in New Issue