Maureen Zehring
How to write headlines that actually work?
A headline's purpose is to quickly and briefly draw attention to the story. It is generally written by a copy editor, but may also be written by the writer, the page layout designer, or other editors.
jQuery(document).ready(function($) { var monthList = [ "января", "февраля", "марта", "апреля", "мая", "июня", "июля", "августа", "сентября", "октября", "ноября", "декабря" ]; var dayList = [ "воскресенье", "понедельник", "вторник", "среда", "четверг", "пятница", "суббота" ]; var utcDate = new Date(); var moscowDate = new Date(utcDate.getUTCFullYear(), utcDate.getUTCMonth(), utcDate.getUTCDate(), utcDate.getUTCHours() + 3, utcDate.getUTCMinutes(), utcDate.getUTCSeconds(), utcDate.getUTCMilliseconds()); if (moscowDate.getHours() >= 18) { moscowDate = new Date(moscowDate.getFullYear(), moscowDate.getMonth(), moscowDate.getDate() + 1, moscowDate.getHours(), moscowDate.getMinutes(), moscowDate.getSeconds(), moscowDate.getMilliseconds()); } var nextDay = new Date(moscowDate.getFullYear(), moscowDate.getMonth(), moscowDate.getDate() + 1, moscowDate.getHours(), moscowDate.getMinutes(), moscowDate.getSeconds(), moscowDate.getMilliseconds()); var nextMonth = ""; if (moscowDate.getMonth() != nextDay.getMonth()) { nextMonth = " " + monthList[nextDay.getMonth()]; } var fDate = moscowDate.getDate(); if (fDate < 10) { fDate = "0" + fDate; } var dayOfWeek = dayList[moscowDate.getDay()]; var month = monthList[moscowDate.getMonth()]; $(".dateDate").html(fDate); $(".monthDate").html(month); $(".dayDate").html(dayOfWeek); });

, , 19:00 мск