Some smaller improvements; added more greetings
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s
This commit is contained in:
@@ -50,7 +50,30 @@
|
||||
Made with ❤️ by human | <a href="https://privacynerd.de/impressum?referrer=http://127.0.0.1:8000/griddy.html">Imprint</a>
|
||||
</div>
|
||||
<script>
|
||||
const greetings = ["What's up?", "Hey dear stranger!", "Hello you!", "G'day m'ae", "Greetings!", "Nice to hear from you!"];
|
||||
const greetings = [
|
||||
"What's up?",
|
||||
"How's it goin'?",
|
||||
"Hey dear stranger!",
|
||||
"Howdy, stranger!",
|
||||
"Hello you!",
|
||||
"G'day mate!",
|
||||
"Greetings!",
|
||||
"Nice to hear from you!",
|
||||
"Oi!",
|
||||
"Welcome to my website!",
|
||||
"Hey there!",
|
||||
"Hey!",
|
||||
"Hej!",
|
||||
"Welcome aboard!",
|
||||
"Welcome to my little corner of the internet!",
|
||||
"Welcome to my space on the web!",
|
||||
"Hello, take a look around!",
|
||||
"Glad you're here, enjoy your stay!",
|
||||
"Hey, nice to see you here!",
|
||||
"I’m happy you stopped by!",
|
||||
"Hey there! Let’s have some fun!",
|
||||
];
|
||||
|
||||
headline = document.getElementById("headline");
|
||||
headline.innerText = greetings[Math.floor(Math.random() * greetings.length)];
|
||||
</script>
|
||||
|
Reference in New Issue
Block a user