Web/main/commissions/closed.js

17 lines
653 B
JavaScript
Raw Normal View History

$.ajax({
dataType: "text",
url: "closed.txt",
cache: false,
success: function (value) {
if (value !== "true")
return;
2023-08-07 14:04:06 +02:00
$(".closed").html( /*html*/ `
<div class="alert alert-warning" role="alert">
<strong>My commissions are currently closed.</strong>
2023-01-10 14:25:29 +01:00
<br>Check this site periodically to see if they have opened back up. Please don't contact me until they do.
</div>
`);
// <br>Alternatively, you can also commission my friend <a href="https://quarris.github.io/commissions">Quarris</a>, who has done some great work in the past.
}
2023-01-10 14:25:29 +01:00
});