upd: contact alert

This commit is contained in:
b1ek 2024-09-26 16:54:36 +10:00
parent 4fc270c09d
commit 740dfec1e2
Signed by: blek
GPG Key ID: A622C22C9BC616B2
3 changed files with 9 additions and 2 deletions

View File

@ -2,6 +2,8 @@
title = "Welcome"
+++
{{ alert(title = "Contacting me", body = "I am going to be completely offline until 28th september.<br/>Do not expect me to reply before then<br/><br/>If it is work related or an emergency, write to email") }}
## Welcome to my world!
Hello there! My name is Alice and i am a fullstack web dev. I like to start a lot of side projects, but finish only a few of them.

View File

@ -15,7 +15,7 @@
{% block root %}
<div class='screen fader'>
<!-- <div class='screen fader'>
<p>
<img src='/load.gif' width='46px' height='48px' style='margin-bottom:8px' /><br/>
Loading . . .
@ -27,6 +27,6 @@
</a>
</span>
</p>
</div>
</div> -->
{% endblock root %}

View File

@ -0,0 +1,5 @@
<div class="alert" style="background:#e7f29f30;border:1px solid #d7e28f25;padding:2rem;width:fit-content;margin:0rem auto;text-align: center;border-radius:.25rem;">
<h1 style="margin:0;padding:0">{{ title | safe }}</h1>
<hr style="margin:1rem auto">
<p>{{ body | safe }}</p>
</div>