Міський голова Чернігова Владислав Атросенко заявив, що рішення суду про його усунення з посади міського голови є придушенням самоврядування, адже за нього проголосувало майже 80% чернігівців.
Він заявив, що вони відповідають за його усунення з посади президента. Атрошенко він написав звернення, в якому він закликав не дозволити внутрішньому ворогу знищити демократію, повідомляє Цензор.НЕТ.
Він зазначив, що під час війни місцеве самоврядування стало ще одним фронтом, який захищає родини українців, відбудовує міста та забезпечує їх життєдіяльність.
ЧИТАЙТЕ ТАКОЖ: Справа тих, хто контролював всю Одесу: фігуранта відправили до СІЗО
«Ініціаторам рішення про моє усунення це важко зрозуміти. Але як пояснити людям, що чиновники з Офісу президента ведуть нищівну політичну війну, а наші хлопці гинуть на справжній війні? що поки вся країна бореться ЗА свободу і демократію, тут у глибині душі чиновники країни роблять все, щоб знищити свободу і демократію», – запитує Атрошенко.
Мер Чернігова також наголосив, що оскаржуватиме рішення суду.
«Я обов’язково буду подавати апеляцію. Вважаю це справою честі. Боротьба за все місцеве самоврядування. Проти його знищення. Вся Україна буде виконувати рішення апеляційного суду. Політики програють. А Чернігів виграє. адже правда завжди перемагає», — підкреслила Атрошенкова.
7 грудня міського голову Чернігова Владислава Атрошенка позбавили права обіймати посаду міського голови на один рік.
Так вирішив Яворівський районний суд Львова.
x
var GPUModalImage = (function(){ // Get the modal var modal = document.getElementById('GPU-Modal-image-window');
// Get the element that closes the modal var span = modal.querySelector(".modal-close");
var bodyPic = modal.querySelector('.js-modal-image'); var bodyPicCaption = modal.querySelector('.js-modal-image-caption'); var loader = modal.querySelector('.js-loader');
var menuWrapper = document.querySelector('#menu-wrapper'); var headerWrapper = document.querySelector('.navbar');
var menuWrapperZIndex; var headerWrapperZIndex;
var wWidth; var wHeight;
var fn = { showModal: function() { modal.style.display = "block"; }, hideModal: function () { modal.style.display = "none"; },
showLoader: function() { loader.style.display = "block"; },
hideLoader: function() { loader.style.display = "none"; },
hideSiteHeader: function() { menuWrapper.style.zIndex = -1; headerWrapper.style.zIndex = -1; },
showSiteHeader: function() { menuWrapper.style.zIndex = menuWrapperZIndex; headerWrapper.style.zIndex = headerWrapperZIndex; }, showCaption: function() { if (bodyPicCaption.innerHTML.length) { bodyPicCaption.style.display = 'block'; } else { fn.hideCaption(); } }, hideCaption: function() { bodyPicCaption.innerHTML = ''; bodyPicCaption.style.display = 'none'; }, getNaturalImageSize: function() {
var imgHeight = bodyPic.naturalHeight; var imgWidth = bodyPic.naturalWidth;
return {width:imgWidth, height: imgHeight}; }, getWinImageSize: function() {
var imgHeight = bodyPic.height; var imgWidth = bodyPic.width;
return {width:imgWidth, height: imgHeight}; }, adaptiveImageSize: function() { var imgSize = fn.getNaturalImageSize();
var margin = (wWidth > 700) ? 40 : 10;
var winWidth = wWidth - margin; var winHeight = wHeight - 50 - 40 - margin;
var ratioImg = imgSize.width / imgSize.height; var ratioWin = winWidth / winHeight;
if (ratioImg > ratioWin) { bodyPic.style.width = Math.min(winWidth,imgSize.width) + 'px'; bodyPic.style.height="auto"; } else { bodyPic.style.width="auto"; bodyPic.style.height = Math.min(winHeight, imgSize.height) + 'px'; // bodyPic.parentNode.style.height = h; }
setTimeout(function(){ var imgSizeReal = fn.getWinImageSize(); bodyPic.parentNode.style.paddingTop = Math.round(Math.abs(winHeight-imgSizeReal.height)/2) + 'px'; },20);
}, onImageLoad: function() { fn.hideLoader(); fn.showCaption(); fn.adaptiveImageSize(); }, openModalImageWindow: function(src,caption) {
fn.showModal(); fn.hideSiteHeader(); fn.showLoader();
bodyPic.src=""; fn.hideCaption();
bodyPicCaption.innerHTML = caption; bodyPic.src = src; $(bodyPic) .one("load",function(){ fn.onImageLoad(); this.load = null; }).each(function(){ if(this.compile) $(this).load(); }); } };
var fnInit = {
initTopZIndexInfo: function() { menuWrapperZIndex = menuWrapper.style.zIndex; headerWrapperZIndex = headerWrapper.style.zIndex; }, closeModal: function() { // When the user clicks on (x), close the modal span.onclick = function() { fn.hideModal(); fn.showSiteHeader(); };
// When the user clicks anywhere outside of the modal, close it window.onclick = function(event) { var wrapper = modal.querySelector('.js-modal-content-wrapper');
if (event.target == modal || event.target == wrapper ) { span.click();
} };
window.onkeyup = function(e) { var key = e.keyCode ? e.keyCode : e.which;
if (key == 27 && modal.style.display == 'block') { span.click(); } } }, initWindowSize: function() { wWidth = document.documentElement.clientWidth || window.innerWidth || document.body.clientWidth;
wHeight = document.documentElement.clientHeight || window.innerHeight || document.body.clientHeight;
}, adaptiveImage: function() { window.onresize = function() { fn.adaptiveImageSize(); } } };
return { init: function(){ for (var prop in fnInit) { if (fnInit.hasOwnProperty(prop) && typeof jQuery.isFunction(fnInit[prop])) { fnInit[prop](); } } }, openModalImageWindow: function(el) { var src, caption; if (typeof el.getAttribute('data-src') != 'undefined') { src = el.getAttribute('data-src'); }
if (typeof el.getAttribute('data-caption') != 'undefined') { caption = el.getAttribute('data-caption'); } fn.openModalImageWindow(src,caption); } };
/*function adaptizeImage() { var windowHeight = window.height; var imgHeight = bodyPic.height; var imageHeight = $("#image").height(); var jcarouselHeight = 105;
var diffHeight = windowHeight - (imageHeight + 10 + jcarouselHeight); if (diffHeight > 0) { makeImageHigher(); } else { makeImageSmaller(); }
function makeImageHigher() { $("#image > img").css('top', diffHeight / 2); $("#image > .caption").css('top', diffHeight / 2); }
function makeImageSmaller() { $("#image > img").css('height', imgHeight + diffHeight - 5); }
}*/ }());
setTimeout(function(){ GPUModalImage.init(); },300);