Web/main/commissions/closed.js
Ell 04fbef3d6a
All checks were successful
Web/pipeline/head This commit looks good
remove quarris' link from the commissions site by request
2021-09-17 00:41:23 +02:00

16 lines
651 B
JavaScript

$.ajax({
dataType: "text",
url: "closed.txt",
cache: false,
success: function (value) {
if (value !== "true")
return;
$('.closed').html( /*html*/ `
<div class="alert alert-warning" role="alert">
<strong>My commissions are currently closed.</strong>
<br>If you are willing to wait until they reopen, you can still contact me with a summary of your request.
</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.
}
});