روابط فرهنگی امروز را نباید بر پایه رخدادهای تلخ تاریخی بنا کنیم

به نقل از سایت اخبار صنایع فرهنگی :  به گزارش خبرگزاری مهر، به نقل از روابط عمومی سازمان فرهنگ و ارتباطات اسلامی، روابط ایران و روسیه از قدمتی چهارصد ساله برخوردار است. با وجود خاطرات ناخوشایندی که از برخی دوره‌های روابط دو کشور در برخی ذهن‌ها باقی مانده، گسترش روابط دو کشور طی سال‌های اخیر نقطه آغازی برای تصحیح دیدگاه‌های طرفین تلقی می‌شود. رایزن فرهنگی کنونی ایران در روسیه، قهرمان سلیمانی است که نزدیک به یکسال از ماموریت او در این کشور پهناور می‌گذرد. در گفت‌وگو با او به بحث درباره تبیین روابط فرهنگی ایران و روسیه و همچنین تحولات فضای فرهنگی روسیه در این دهه‌ها پرداخته‌ایم.
180
0 0

لینک های مفید

طراحی لوگو در اصفهان

بروزترین بانک اطلاعات مشاغل کشور

سنگ لایمستون

کتاب های ادبیات آلمان

برنزه کننده صورت

لوازم یدکی تویوتاTOYOTA

$(window).load(function () { 'use strict'; function activeStickyKit() { $('[data-sticky_column]').stick_in_parent({ parent: '[data-sticky_parent]' }); // bootstrap col position $('[data-sticky_column]') .on('sticky_kit:bottom', function (e) { $(this).parent().css('position', 'static'); }) .on('sticky_kit:unbottom', function (e) { $(this).parent().css('position', 'relative'); }); }; activeStickyKit(); function detachStickyKit() { $('[data-sticky_column]').trigger("sticky_kit:detach"); }; var screen = 768; var windowHeight, windowWidth; windowWidth = $(window).width(); if ((windowWidth < screen)) { detachStickyKit(); } else { activeStickyKit(); } // windowSize // window resize function windowSize() { windowHeight = window.innerHeight ? window.innerHeight : $(window).height(); windowWidth = window.innerWidth ? window.innerWidth : $(window).width(); } windowSize(); // Returns a function, that, as long as it continues to be invoked, will not // be triggered. The function will be called after it stops being called for // N milliseconds. If `immediate` is passed, trigger the function on the // leading edge, instead of the trailing. function debounce(func, wait, immediate) { var timeout; return function () { var context = this, args = arguments; var later = function () { timeout = null; if (!immediate) func.apply(context, args); }; var callNow = immediate && !timeout; clearTimeout(timeout); timeout = setTimeout(later, wait); if (callNow) func.apply(context, args); }; }; $(window).resize(debounce(function () { windowSize(); $(document.body).trigger("sticky_kit:recalc"); if (windowWidth < screen) { detachStickyKit(); } else { activeStickyKit(); } }, 250)); });