Incel Wiki:XOTN
Jump to navigation
Jump to search
JavaScript[edit source]
Copypasta the JavaScript below into an HTML document and view in your browser. Be sure .html is used for the file extension.
<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.01 Transitional//EN' 'http://www.w3.org/TR/html4/loose.dtd'> <html> <head> <meta http-equiv='Pragma' content='no-cache'> <meta http-equiv='expires' content='0'> <meta content='text/html; charset=utf-8' http-equiv='content-type'> </head> <body> <script type='text/JavaScript'> var months = ["", "January","February","March","April","May","June","July","August","September","October","November","December"]; // yes, I know. Piss off. var date = new Date (); var year = date.getFullYear(); var month = date.getMonth () + 1; var days = new Date (year, month, 0).getDate (); var votn = ""; var potn = ""; var aotn = ""; var qotn = ""; month = months[month]; for (day = days; day > 0; day--) { votn += "*[[Incel Wiki:Featured Video/" + month + " " + day + ", " + year + "|" + month + " " + day + ", " + year + " - ]]<br />"; potn += "File:Hello POTN.jpg|{{center|[[Incel Wiki:Featured Picture/" + month + " " + day + ", " + year + "|" + month + " " + day + ", " + year + "]]}}<br />"; aotn += "*[[Incel Wiki:Featured Article/" + month + " " + day + ", " + year + "|" + month + " " + day + ", " + year + "]] - <br />"; qotn += "*[[Incel Wiki:Featured Quote/" + month + " " + day + ", " + year + "|" + month + " " + day + ", " + year + " - ]]<br />"; } document.body.innerHTML += "<br />=== Video of the Now ===<br /><br />" + votn; document.body.innerHTML += "<br />=== Picture of the Now ===<br /><br />" + potn; document.body.innerHTML += "<br />=== Article of the Now ===<br /><br />" + aotn; document.body.innerHTML += "<br />=== Quote of the Now ===<br /><br />" + qotn; </script> </body> </html>