2021-05-15 17:08:56 +02:00
$ . ajax ( {
dataType : "text" ,
url : "closed.txt" ,
cache : false ,
success : function ( value ) {
if ( value !== "true" )
return ;
2021-08-06 22:26:17 +02:00
$ ( '.closed' ) . html ( /*html*/ `
2021-05-15 17:08:56 +02:00
< div class = "alert alert-warning" role = "alert" >
< strong > My commissions are currently closed . < / s t r o n g >
2021-05-15 17:13:07 +02:00
< br > If you are willing to wait until they reopen , you can still contact me with a summary of your request .
2021-05-15 17:08:56 +02:00
< / d i v >
` );
2021-09-17 00:41:23 +02:00
// <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.
2021-05-15 17:08:56 +02:00
}
} ) ;