'.esc_html__('Slick Carousel Slider View - Shortcode', 'wp-slick-slider-and-image-carousel').'
[slick-carousel-slider] '; } // Divi Frontend Builder - Do not Display Preview if( function_exists( 'et_core_is_fb_enabled' ) && isset( $_POST['is_fb_preview'] ) && isset( $_POST['shortcode'] ) ) { return '
'.esc_html__('Slick Carousel Slider View - Shortcode', 'wp-slick-slider-and-image-carousel').'
slick-carousel-slider
'; } // Fusion Builder Live Editor - Do not Display Preview if( class_exists( 'FusionBuilder' ) && (( isset( $_GET['builder'] ) && $_GET['builder'] == 'true' ) || ( isset( $_POST['action'] ) && $_POST['action'] == 'get_shortcode_render' )) ) { return '
'.esc_html__('Slick Carousel Slider View - Shortcode', 'wp-slick-slider-and-image-carousel').'
slick-carousel-slider
'; } // Shortcode Parameter $atts = shortcode_atts(array( 'limit' => 15, 'category' => '', 'show_title' => 'true', 'include_cat_child' => 'true', 'design' => 'prodesign-1', 'image_fit' => 'true', 'image_size' => 'large', 'show_content' => 'true', 'slidestoshow' => 3, 'loop' => 'true', 'slidestoscroll' => 1, 'dots' => 'true', 'arrows' => 'true', 'autoplay' => 'true', 'autoplay_interval' => 3000, 'speed' => 600, 'centermode' => 'false', 'center_padding' => 0, 'hover_pause' => 'true', 'focus_pause' => 'false', 'show_read_more' => 'true', 'read_more_text' => __('Read More', 'wp-slick-slider-and-image-carousel'), 'sliderheight' => '', 'rtl' => '', 'link_target' => 'self', 'order' => 'DESC', 'orderby' => 'date', 'exclude_cat' => array(), 'exclude_post' => array(), 'posts' => array(), 'arrow_design' => 'design-1', /* Design 1 to 8 */ 'dots_design' => 'design-1', /* Design 1 to 12 */ 'query_offset' => '', 'lazyload' => '', 'extra_class' => '', 'className' => '', 'align' => '', 'dev_param_1' => '', 'dev_param_2' => '', ), $atts, 'slick-carousel-slider'); $shortcode_designs = wpsisac_pro_carousel_designs(); $atts['limit'] = wpsisac_pro_clean_number( $atts['limit'], 15, 'number' ); $atts['slidestoshow'] = wpsisac_pro_clean_number( $atts['slidestoshow'], 3 ); $atts['slidestoscroll'] = wpsisac_pro_clean_number( $atts['slidestoscroll'], 1 ); $atts['autoplay_interval'] = wpsisac_pro_clean_number( $atts['autoplay_interval'], 3000 ); $atts['speed'] = wpsisac_pro_clean_number( $atts['speed'], 600 ); $atts['center_padding'] = wpsisac_pro_clean_number( $atts['center_padding'], 0 ); $atts['sliderheight'] = wpsisac_pro_clean_number( $atts['sliderheight'], '' ); $atts['query_offset'] = wpsisac_pro_clean_number( $atts['query_offset'], '' ); $atts['show_title'] = ( $atts['show_title'] == 'true' ) ? 1 : 0; $atts['category'] = ! empty( $atts['category'] ) ? explode( ',', $atts['category'] ) : ''; $atts['include_cat_child'] = ( $atts['include_cat_child'] == 'false' ) ? false : true; $atts['design'] = ( $atts['design'] && ( array_key_exists( trim( $atts['design'] ), $shortcode_designs ) ) ) ? trim($atts['design']) : 'prodesign-1'; $atts['image_size'] = ! empty( $atts['image_size'] ) ? $atts['image_size'] : 'large'; $atts['image_fit'] = ( $atts['image_fit'] == 'false' ) ? 0 : 1; $atts['loop'] = ( $atts['loop'] == 'false' ) ? 'false' : 'true'; $atts['dots'] = ( $atts['dots'] == 'false' ) ? 'false' : 'true'; $atts['arrows'] = ( $atts['arrows'] == 'false' ) ? 'false' : 'true'; $atts['autoplay'] = ( $atts['autoplay'] == 'false' ) ? 'false' : 'true'; $atts['centermode'] = ( $atts['centermode'] == 'true' ) ? 'true' : 'false'; $atts['hover_pause'] = ( $atts['hover_pause'] == 'false' ) ? 'false' : 'true'; $atts['focus_pause'] = ( $atts['focus_pause'] == 'true' ) ? 'true' : 'false'; $atts['show_content'] = ( $atts['show_content'] == 'true' ) ? 1 : 0; $atts['show_read_more'] = ( $atts['show_read_more'] == 'true' ) ? true : false; $atts['read_more_text'] = ! empty( $atts['read_more_text'] ) ? $atts['read_more_text'] : __('Read More', 'wp-slick-slider-and-image-carousel'); $atts['link_target'] = ( $atts['link_target'] == 'blank' ) ? '_blank' : '_self'; $atts['order'] = ( strtolower( $atts['order'] ) == 'asc' ) ? 'ASC' : 'DESC'; $atts['orderby'] = ! empty( $atts['orderby'] ) ? $atts['orderby'] : 'date'; $atts['exclude_cat'] = ! empty( $atts['exclude_cat'] ) ? explode( ',', $atts['exclude_cat'] ) : array(); $atts['exclude_post'] = ! empty( $atts['exclude_post'] ) ? explode( ',', $atts['exclude_post'] ) : array(); $atts['posts'] = ! empty( $atts['posts'] ) ? explode( ',', $atts['posts'] ) : array(); $atts['slider_height_css'] = ! empty( $atts['sliderheight'] ) ? "style='height:{$atts['sliderheight']}px;'" : ''; $atts['arrow_design'] = ! empty( $atts['arrow_design'] ) ? $atts['arrow_design'] : 'design-1'; $atts['dots_design'] = ! empty( $atts['dots_design'] ) ? $atts['dots_design'] : 'design-1'; $atts['lazyload'] = ( $atts['lazyload'] == 'ondemand' || $atts['lazyload'] == 'progressive' ) ? wpsisac_pro_clean( $atts['lazyload'] ) : ''; $atts['align'] = ! empty( $atts['align'] ) ? 'align'.$atts['align'] : ''; $atts['extra_class'] = $atts['extra_class'] .' '. $atts['align'] .' '. $atts['className']; $atts['extra_class'] = wpsisac_sanitize_html_classes( $atts['extra_class'] ); $atts['dev_param_1'] = ! empty( $atts['dev_param_1'] ) ? $atts['dev_param_1'] : ''; $atts['dev_param_2'] = ! empty( $atts['dev_param_2'] ) ? $atts['dev_param_2'] : ''; extract( $atts ); // For RTL if( empty( $rtl ) && is_rtl() ) { $rtl = 'true'; } elseif ( $rtl == 'true' ) { $rtl = 'true'; } else { $rtl = 'false'; } // Enqueus required script wp_enqueue_script( 'wpos-slick-jquery' ); wp_enqueue_script( 'wpsisac-pro-public-script' ); // Taking some global global $post; // Taking some variables $atts['count'] = 1; $atts['unique'] = wpsisac_pro_get_unique(); // Main Class Variable $atts['css_clr'] = "wpsisac-{$design}"; $atts['css_clr'] .= " wpsisac-arrow-{$arrow_design}"; $atts['css_clr'] .= " wpsisac-dots-{$dots_design}"; $atts['css_clr'] .= ( $image_fit ) ? ' wpsisac-image-fit' : ''; // WP Query Parameters $args = array ( 'post_type' => WPSISAC_PRO_POST_TYPE, 'post_status' => array( 'publish' ), 'orderby' => $orderby, 'order' => $order, 'posts_per_page' => $limit, 'post__not_in' => $exclude_post, 'post__in' => $posts, 'offset' => $query_offset, 'ignore_sticky_posts' => true, ); // Category Parameter if( $category != "" ) { $args['tax_query'] = array( array( 'taxonomy' => WPSISAC_PRO_CAT, 'field' => 'term_id', 'terms' => $category, 'include_children' => $include_cat_child, )); } else if( ! empty( $exclude_cat ) ) { $args['tax_query'] = array( array( 'taxonomy' => WPSISAC_PRO_CAT, 'field' => 'term_id', 'terms' => $exclude_cat, 'operator' => 'NOT IN', 'include_children' => $include_cat_child, )); } // WP Query Parameters $args = apply_filters( 'slick_carousel_slider_query_args', $args, $atts ); $query = new WP_Query( $args ); $post_count = $query->post_count; // Slidertoshow and Centermode Condition $slidestoshow = ( ! empty( $slidestoshow ) && $slidestoshow <= $post_count ) ? $slidestoshow : $post_count; $centermode = ( $centermode == 'true' && $slidestoshow % 2 != 0 && $slidestoshow != $post_count ) ? 'true' : 'false'; $atts['css_clr'] .= ( $centermode == 'true' ) ? ' wpsisac-center-mode' : ''; // Slider configuration $atts['slider_conf'] = compact( 'dots', 'arrows', 'autoplay', 'autoplay_interval', 'speed', 'design', 'rtl', 'loop', 'slidestoshow', 'center_padding', 'slidestoscroll', 'centermode', 'hover_pause', 'focus_pause', 'lazyload' ); ob_start(); // If post is there if( $query->have_posts() ) : wpsisac_get_template( 'carousel/loop-start.php', $atts ); // loop start while ( $query->have_posts() ) : $query->the_post(); $atts['slider_img'] = wpsisac_pro_get_post_featured_image( $post->ID, $image_size, true ); $atts['read_more_url'] = get_post_meta( $post->ID, 'wpsisac_slide_link', true ); $atts['slick_post_title'] = get_the_title(); wpsisac_get_template( "carousel/{$design}.php", $atts ); // design file $atts['count']++; endwhile; wpsisac_get_template( 'carousel/loop-end.php', $atts ); // loop end endif; // end have_post() wp_reset_postdata(); // Reset WP Query $content .= ob_get_clean(); return $content;}// 'slick-carousel-slider' shortcodeadd_shortcode('slick-carousel-slider', 'wpsisac_pro_carousel_slider');
'.esc_html__('Slick Variable Slider View - Shortcode', 'wp-slick-slider-and-image-carousel').'
[slick-variable-slider] '; } // Divi Frontend Builder - Do not Display Preview if( function_exists( 'et_core_is_fb_enabled' ) && isset( $_POST['is_fb_preview'] ) && isset( $_POST['shortcode'] ) ) { return '
'.esc_html__('Slick Variable Slider View - Shortcode', 'wp-slick-slider-and-image-carousel').'
slick-variable-slider
'; } // Fusion Builder Live Editor - Do not Display Preview if( class_exists( 'FusionBuilder' ) && (( isset( $_GET['builder'] ) && $_GET['builder'] == 'true' ) || ( isset( $_POST['action'] ) && $_POST['action'] == 'get_shortcode_render' )) ) { return '
'.esc_html__('Slick Variable Slider View - Shortcode', 'wp-slick-slider-and-image-carousel').'
slick-variable-slider
'; } // Shortcode Parameter $atts = shortcode_atts(array( 'limit' => 15, 'category' => '', 'show_title' => 'true', 'include_cat_child' => 'true', 'design' => 'prodesign-1', 'image_fit' => 'true', 'image_size' => 'full', 'show_content' => 'true', 'loop' => 'true', 'dots' => 'true', 'arrows' => 'true', 'autoplay' => 'true', 'autoplay_interval' => 3000, 'speed' => 600, 'show_read_more' => 'true', 'read_more_text' => __('Read More', 'wp-slick-slider-and-image-carousel'), 'sliderheight' => '', 'var_width' => 'false', 'rtl' => '', 'hover_pause' => 'true', 'focus_pause' => 'false', 'link_target' => 'self', 'order' => 'DESC', 'orderby' => 'date', 'exclude_cat' => array(), 'exclude_post' => array(), 'posts' => array(), 'center_width' => '70%', 'arrow_design' => 'design-1', /* Design 1 to 8 */ 'dots_design' => 'design-1', /* Design 1 to 12 */ 'query_offset' => '', 'lazyload' => '', 'extra_class' => '', 'className' => '', 'align' => '', 'dev_param_1' => '', 'dev_param_2' => '', ), $atts, 'slick-variable-slider'); $shortcode_designs = wpsisac_pro_variable_designs(); $atts['limit'] = wpsisac_pro_clean_number( $atts['limit'], 15, 'number' ); $atts['autoplay_interval'] = wpsisac_pro_clean_number( $atts['autoplay_interval'], 3000 ); $atts['speed'] = wpsisac_pro_clean_number( $atts['speed'], 600 ); $atts['sliderheight'] = wpsisac_pro_clean_number( $atts['sliderheight'], '' ); $atts['query_offset'] = wpsisac_pro_clean_number( $atts['query_offset'], '' ); $atts['show_title'] = ( $atts['show_title'] == 'true' ) ? 1 : 0; $atts['category'] = ! empty( $atts['category'] ) ? explode( ',', $atts['category'] ) : ''; $atts['include_cat_child'] = ( $atts['include_cat_child'] == 'false' ) ? false : true; $atts['design'] = ( $atts['design'] && ( array_key_exists( trim( $atts['design'] ), $shortcode_designs ) ) ) ? trim( $atts['design'] ) : 'prodesign-1'; $atts['image_size'] = ! empty( $atts['image_size'] ) ? $atts['image_size'] : 'full'; $atts['loop'] = ( $atts['loop'] == 'false' ) ? 'false' : 'true'; $atts['dots'] = ( $atts['dots'] == 'false' ) ? 'false' : 'true'; $atts['arrows'] = ( $atts['arrows'] == 'false' ) ? 'false' : 'true'; $atts['autoplay'] = ( $atts['autoplay'] == 'false' ) ? 'false' : 'true'; $atts['var_width'] = ( $atts['var_width'] == 'false' ) ? 'false' : 'true'; $atts['hover_pause'] = ( $atts['hover_pause'] == 'false' ) ? 'false' : 'true'; $atts['focus_pause'] = ( $atts['focus_pause'] == 'true' ) ? 'true' : 'false'; $atts['image_fit'] = ( $atts['image_fit'] == 'false' ) ? 0 : 1; $atts['show_content'] = ( $atts['show_content'] == 'true' ) ? 1 : 0; $atts['show_read_more'] = ( $atts['show_read_more'] == 'true' ) ? true : false; $atts['read_more_text'] = ! empty( $atts['read_more_text'] ) ? $atts['read_more_text'] : __('Read More', 'wp-slick-slider-and-image-carousel'); $atts['link_target'] = ( $atts['link_target'] == 'blank' ) ? '_blank' : '_self'; $atts['order'] = ( strtolower( $atts['order'] ) == 'asc' ) ? 'ASC' : 'DESC'; $atts['orderby'] = ! empty( $atts['orderby'] ) ? $atts['orderby'] : 'date'; $atts['exclude_cat'] = ! empty( $atts['exclude_cat'] ) ? explode( ',', $atts['exclude_cat'] ) : array(); $atts['exclude_post'] = ! empty( $atts['exclude_post'] ) ? explode( ',', $atts['exclude_post'] ) : array(); $atts['posts'] = ! empty( $atts['posts'] ) ? explode( ',', $atts['posts'] ) : array(); $atts['slider_height_css'] = ! empty($atts['sliderheight'] ) ? "style='height:{$atts['sliderheight']}px;'" : ''; $atts['center_width'] = ! empty( $atts['center_width'] ) ? $atts['center_width'] : '70%'; $atts['arrow_design'] = ( $atts['arrow_design'] ) ? $atts['arrow_design'] : 'design-1'; $atts['dots_design'] = ! empty($atts['dots_design'] ) ? $atts['dots_design'] : 'design-1'; $atts['lazyload'] = ( $atts['lazyload'] == 'ondemand' || $atts['lazyload'] == 'progressive' ) ? wpsisac_pro_clean( $atts['lazyload'] ) : ''; $atts['align'] = ! empty( $atts['align'] ) ? 'align'.$atts['align'] : ''; $atts['extra_class'] = $atts['extra_class'] .' '. $atts['align'] .' '. $atts['className']; $atts['extra_class'] = wpsisac_sanitize_html_classes( $atts['extra_class'] ); $atts['dev_param_1'] = ! empty( $atts['dev_param_1'] ) ? $atts['dev_param_1'] : ''; $atts['dev_param_2'] = ! empty( $atts['dev_param_2'] ) ? $atts['dev_param_2'] : ''; extract( $atts ); // For RTL if( empty( $rtl ) && is_rtl() ) { $rtl = 'true'; } elseif ( $rtl == 'true' ) { $rtl = 'true'; } else { $rtl = 'false'; } // Enqueus required script wp_enqueue_script( 'wpos-slick-jquery' ); wp_enqueue_script( 'wpsisac-pro-public-script' ); // Taking some global global $post; // Taking some variables $atts['unique'] = wpsisac_pro_get_unique(); $atts['count'] = 1; // Main Class Variable $atts['css_clr'] = "wpsisac-{$design}"; $atts['css_clr'] .= " wpsisac-arrow-{$arrow_design}"; $atts['css_clr'] .= " wpsisac-dots-{$dots_design}"; $atts['css_clr'] .= ( $image_fit ) ? ' wpsisac-image-fit' : ''; // Slider configuration $atts['slider_conf'] = compact( 'dots', 'arrows', 'autoplay', 'autoplay_interval','var_width', 'speed', 'design', 'rtl', 'loop', 'hover_pause', 'focus_pause', 'lazyload' ); // WP Query Parameters $args = array ( 'post_type' => WPSISAC_PRO_POST_TYPE, 'post_status' => array( 'publish' ), 'orderby' => $orderby, 'order' => $order, 'posts_per_page' => $limit, 'post__not_in' => $exclude_post, 'post__in' => $posts, 'offset' => $query_offset, 'ignore_sticky_posts' => true, ); // Category Parameter if( $category != "" ) { $args['tax_query'] = array( array( 'taxonomy' => WPSISAC_PRO_CAT, 'field' => 'term_id', 'terms' => $category, 'include_children' => $include_cat_child, )); } else if( ! empty( $exclude_cat ) ) { $args['tax_query'] = array( array( 'taxonomy' => WPSISAC_PRO_CAT, 'field' => 'term_id', 'terms' => $exclude_cat, 'operator' => 'NOT IN', 'include_children' => $include_cat_child, )); } // WP Query Parameters $args = apply_filters( 'slick_variable_slider_query_args', $args, $atts ); $query = new WP_Query( $args ); ob_start(); // If post is there if( $query->have_posts() ) : wpsisac_get_template( 'variable-width/loop-start.php', $atts ); // loop start while ( $query->have_posts() ) : $query->the_post(); $atts['slider_img'] = wpsisac_pro_get_post_featured_image( $post->ID, $image_size, true ); $atts['read_more_url'] = get_post_meta( $post->ID, 'wpsisac_slide_link', true ); $atts['slick_post_title'] = get_the_title(); wpsisac_get_template( "variable-width/{$design}.php", $atts ); // design file $atts['count']++; endwhile; wpsisac_get_template( 'variable-width/loop-end.php', $atts ); // loop end endif; // end have_post() wp_reset_postdata(); // Reset WP Query $content .= ob_get_clean(); return $content;}// 'slick-variable-slider' shortcodeadd_shortcode('slick-variable-slider', 'wpsisac_pro_variable_slider');{"id":10128,"date":"2023-03-02T12:29:20","date_gmt":"2023-03-02T12:29:20","guid":{"rendered":"http:\/\/43.205.217.194\/?page_id=10128"},"modified":"2024-01-30T09:39:02","modified_gmt":"2024-01-30T09:39:02","slug":"events-and-announcements","status":"publish","type":"page","link":"https:\/\/mitpune.edu.in\/events-and-announcements\/","title":{"rendered":"Events and Announcements"},"content":{"rendered":"\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\n\t
\n\t\t
\"\"<\/figure>\t<\/div>\n\n
\n\t
\n\t\t
\n\t\t\t\n\t\t\t\tAuthor<\/span>\n\t\t\t\t\t\n\t\t\n\t\t\tshreya shreya<\/a>\t\t<\/span>\n\t<\/span>\n\t\t\t\t<\/span>\n\t\t<\/div>\n\n\t\t
\n\t\t\tPublished on:<\/span>\n\t\t\t\n\t\t\t\t
\n\t

\n\t\tDr. Pournima Inamdar Receives Prestigious IBA Award as emerging Law Teacher (IPR)<\/strong><\/a>\n\t<\/h2>\n<\/header>\n\n\t\t\t
\n\t\t\t\t

Happy to inform everyone that Dr. Pournima Inamdar, Associate Dean (External Relations ) of the School of Law was awarded<\/p>\n\t\t\t<\/div>\n\t\t\n<\/a>\n<\/article><\/div>

\n\t
\n\t\t
\"\"<\/figure>\t<\/div>\n\n
\n\t
\n\t\t
\n\t\t\t\n\t\t\t\tAuthor<\/span>\n\t\t\t\t\t\n\t\t\n\t\t\trmtvinodh<\/a>\t\t<\/span>\n\t<\/span>\n\t\t\t\t<\/span>\n\t\t<\/div>\n\n\t\t
\n\t\t\tPublished on:<\/span>\n\t\t\t\n\t\t\t\t
\n\t

\n\t\t5th Convocation Ceremony<\/a>\n\t<\/h2>\n<\/header>\n\n\t\t\t
\n\t\t\t\t

MIT World Peace University’s 5th Convocation Ceremony concluded with grandeur on November 4th, at the World Peace Dome in Loni<\/p>\n\t\t\t<\/div>\n\t\t\n<\/a>\n<\/article><\/div>

\n\t
\n\t\t
\"\"<\/figure>\t<\/div>\n\n
\n\t
\n\t\t
\n\t\t\t\n\t\t\t\tAuthor<\/span>\n\t\t\t\t\t\n\t\t\n\t\t\tshreya shreya<\/a>\t\t<\/span>\n\t<\/span>\n\t\t\t\t<\/span>\n\t\t<\/div>\n\n\t\t
\n\t\t\tPublished on:<\/span>\n\t\t\t\n\t\t\t\t
\n\t

\n\t\tPeace Art Exhibition<\/a>\n\t<\/h2>\n<\/header>\n\n\t\t\t
\n\t\t\t\t

Department of Visual Arts school of Design and Department of Peace Studies organised an exhibition to celebrate the creativity that<\/p>\n\t\t\t<\/div>\n\t\t\n<\/a>\n<\/article><\/div>

\n\t
\n\t\t
\"\"<\/figure>\t<\/div>\n\n
\n\t
\n\t\t
\n\t\t\t\n\t\t\t\tAuthor<\/span>\n\t\t\t\t\t\n\t\t\n\t\t\tshreya shreya<\/a>\t\t<\/span>\n\t<\/span>\n\t\t\t\t<\/span>\n\t\t<\/div>\n\n\t\t
\n\t\t\tPublished on:<\/span>\n\t\t\t\n\t\t\t\t
\n\t

\n\t\tEntrepreneurship Awareness Drive In Collaboration With IIT Kharagpur<\/a>\n\t<\/h2>\n<\/header>\n\n\t\t\t
\n\t\t\t\t

In October 2023, the Entrepreneurship Awareness Drive (EAD) unfolded with a series of engaging Guest lectures and Workshops organised by<\/p>\n\t\t\t<\/div>\n\t\t\n<\/a>\n<\/article><\/div>

\n\t
\n\t\t
\"\"<\/figure>\t<\/div>\n\n
\n\t
\n\t\t
\n\t\t\t\n\t\t\t\tAuthor<\/span>\n\t\t\t\t\t\n\t\t\n\t\t\tshreya shreya<\/a>\t\t<\/span>\n\t<\/span>\n\t\t\t\t<\/span>\n\t\t<\/div>\n\n\t\t
\n\t\t\tPublished on:<\/span>\n\t\t\t\n\t\t\t\t
\n\t

\n\t\tMIT-WPU UAE Chapter Alumni Meet<\/a>\n\t<\/h2>\n<\/header>\n\n\t\t\t
\n\t\t\t\t

The MIT-WPU UAE Alumni Chapter Meet held on October 15, 2023, at the exquisite Eina Ballroom, DoubleTree by Hilton Dubai<\/p>\n\t\t\t<\/div>\n\t\t\n<\/a>\n<\/article><\/div>

\n\t
\n\t\t
\"\"<\/figure>\t<\/div>\n\n
\n\t
\n\t\t
\n\t\t\t\n\t\t\t\tAuthor<\/span>\n\t\t\t\t\t\n\t\t\n\t\t\tshreya shreya<\/a>\t\t<\/span>\n\t<\/span>\n\t\t\t\t<\/span>\n\t\t<\/div>\n\n\t\t
\n\t\t\tPublished on:<\/span>\n\t\t\t\n\t\t\t\t
\n\t

\n\t\tWorld Mental Health Day 2023<\/a>\n\t<\/h2>\n<\/header>\n\n\t\t\t
\n\t\t\t\t

Unlocking Minds, Nurturing Well-Being Department of Clinical Sciences and the Department of Liberal Arts organised a special event in commemoration<\/p>\n\t\t\t<\/div>\n\t\t\n<\/a>\n<\/article><\/div>

\n\t
\n\t\t
\"\"<\/figure>\t<\/div>\n\n
\n\t
\n\t\t
\n\t\t\t\n\t\t\t\tAuthor<\/span>\n\t\t\t\t\t\n\t\t\n\t\t\tshreya shreya<\/a>\t\t<\/span>\n\t<\/span>\n\t\t\t\t<\/span>\n\t\t<\/div>\n\n\t\t
\n\t\t\tPublished on:<\/span>\n\t\t\t\n\t\t\t\t
\n\t

\n\t\tNovice Moot Court Competition 2023<\/a>\n\t<\/h2>\n<\/header>\n\n\t\t\t
\n\t\t\t\t

On October 9, 2023, the School of Law proudly hosted the Novice Moot Court Competition. This esteemed event was meticulously<\/p>\n\t\t\t<\/div>\n\t\t\n<\/a>\n<\/article><\/div>

\n\t
\n\t\t
\"\"<\/figure>\t<\/div>\n\n
\n\t
\n\t\t
\n\t\t\t\n\t\t\t\tAuthor<\/span>\n\t\t\t\t\t\n\t\t\n\t\t\trmtvinodh<\/a>\t\t<\/span>\n\t<\/span>\n\t\t\t\t<\/span>\n\t\t<\/div>\n\n\t\t
\n\t\t\tPublished on:<\/span>\n\t\t\t\n\t\t\t\t
\n\t

\n\t\tA Day of Thanks and Inspiration: MIT-WPU Community Celebrates Shri. Rahul V. Karad’s Birthday<\/a>\n\t<\/h2>\n<\/header>\n\n\t\t\t
\n\t\t\t\t

With immense joy and gratitude, the MIT-WPU community came together on August 28th to celebrate the birthday of our cherished<\/p>\n\t\t\t<\/div>\n\t\t\n<\/a>\n<\/article><\/div>

\n\t
\n\t\t
\"\"<\/figure>\t<\/div>\n\n
\n\t
\n\t\t
\n\t\t\t\n\t\t\t\tAuthor<\/span>\n\t\t\t\t\t\n\t\t\n\t\t\trmtvinodh<\/a>\t\t<\/span>\n\t<\/span>\n\t\t\t\t<\/span>\n\t\t<\/div>\n\n\t\t
\n\t\t\tPublished on:<\/span>\n\t\t\t\n\t\t\t\t
\n\t

\n\t\tElevating Human Values: MIT-WPU inaugurates Humane Development Center<\/a>\n\t<\/h2>\n<\/header>\n\n\t\t\t
\n\t\t\t\t

MIT-WPU proudly announces the inauguration of its Humane Development Center (HDC), a dedicated hub with a singular focus on nurturing<\/p>\n\t\t\t<\/div>\n\t\t\n<\/a>\n<\/article><\/div>

\n\t
\n\t\t
\"\"<\/figure>\t<\/div>\n\n
\n\t
\n\t\t
\n\t\t\t\n\t\t\t\tAuthor<\/span>\n\t\t\t\t\t\n\t\t\n\t\t\trmtvinodh<\/a>\t\t<\/span>\n\t<\/span>\n\t\t\t\t<\/span>\n\t\t<\/div>\n\n\t\t
\n\t\t\tPublished on:<\/span>\n\t\t\t\n\t\t\t\t
\n\t

\n\t\tA New Wave of Empowerment: MIT-WPU launches Connect FM-Community Radio<\/a>\n\t<\/h2>\n<\/header>\n\n\t\t\t
\n\t\t\t\t

On the 28th of August 2023, MIT-WPU marked a highly anticipated milestone with the inauguration of its Connect FM Community<\/p>\n\t\t\t<\/div>\n\t\t\n<\/a>\n<\/article><\/div>

\n\t
\n\t\t
\"\"<\/figure>\t<\/div>\n\n
\n\t
\n\t\t
\n\t\t\t\n\t\t\t\tAuthor<\/span>\n\t\t\t\t\t\n\t\t\n\t\t\trmtvinodh<\/a>\t\t<\/span>\n\t<\/span>\n\t\t\t\t<\/span>\n\t\t<\/div>\n\n\t\t
\n\t\t\tPublished on:<\/span>\n\t\t\t\n\t\t\t\t
\n\t

\n\t\tFighting Hunger, Spreading Love: Mission Neki’s Touching Gesture on MIT-WPU’s 40th Foundation Day Celebration<\/a>\n\t<\/h2>\n<\/header>\n\n\t\t\t
\n\t\t\t\t

Mission Neki, an integral part of the Innovation Hub social initiative wing stands as a beacon of social innovation, guided<\/p>\n\t\t\t<\/div>\n\t\t\n<\/a>\n<\/article><\/div>

\n\t
\n\t\t
\"\"<\/figure>\t<\/div>\n\n
\n\t
\n\t\t
\n\t\t\t\n\t\t\t\tAuthor<\/span>\n\t\t\t\t\t\n\t\t\n\t\t\trmtvinodh<\/a>\t\t<\/span>\n\t<\/span>\n\t\t\t\t<\/span>\n\t\t<\/div>\n\n\t\t
\n\t\t\tPublished on:<\/span>\n\t\t\t\n\t\t\t\t
\n\t

\n\t\tUnveiling Horizons: A New Chapter Begins at MIT-WPU School of Law<\/a>\n\t<\/h2>\n<\/header>\n\n\t\t\t
\n\t\t\t\t

Amid an atmosphere buzzing with excitement and aspiration, the School of Law at MIT-World Peace University (MIT-WPU) organised a student<\/p>\n\t\t\t<\/div>\n\t\t\n<\/a>\n<\/article><\/div>

\n\t
\n\t\t
\"\"<\/figure>\t<\/div>\n\n
\n\t
\n\t\t
\n\t\t\t\n\t\t\t\tAuthor<\/span>\n\t\t\t\t\t\n\t\t\n\t\t\trmtvinodh<\/a>\t\t<\/span>\n\t<\/span>\n\t\t\t\t<\/span>\n\t\t<\/div>\n\n\t\t
\n\t\t\tPublished on:<\/span>\n\t\t\t\n\t\t\t\t
\n\t

\n\t\tAlumni Interaction<\/a>\n\t<\/h2>\n<\/header>\n\n\t\t\t
\n\t\t\t\t

Members of the Computer Society of India (CSI) recently had the unique opportunity to engage with two distinguished alumni, Saurabh<\/p>\n\t\t\t<\/div>\n\t\t\n<\/a>\n<\/article><\/div>

\n\t
\n\t\t
\"\"<\/figure>\t<\/div>\n\n
\n\t
\n\t\t
\n\t\t\t\n\t\t\t\tAuthor<\/span>\n\t\t\t\t\t\n\t\t\n\t\t\trmtvinodh<\/a>\t\t<\/span>\n\t<\/span>\n\t\t\t\t<\/span>\n\t\t<\/div>\n\n\t\t
\n\t\t\tPublished on:<\/span>\n\t\t\t\n\t\t\t\t
\n\t

\n\t\tContinuing the Journey: Chicago Chapter Alumni Converge for MIT-WPU Homecoming<\/a>\n\t<\/h2>\n<\/header>\n\n\t\t\t
\n\t\t\t\t

The Chicago Chapter Alumni Meet held on August 17, 2023, at Sheraton Lisle Naperville Hotel, Chicago was a heartwarming testament<\/p>\n\t\t\t<\/div>\n\t\t\n<\/a>\n<\/article><\/div>

\n\t
\n\t\t
\"\"<\/figure>\t<\/div>\n\n
\n\t
\n\t\t
\n\t\t\t\n\t\t\t\tAuthor<\/span>\n\t\t\t\t\t\n\t\t\n\t\t\trmtvinodh<\/a>\t\t<\/span>\n\t<\/span>\n\t\t\t\t<\/span>\n\t\t<\/div>\n\n\t\t
\n\t\t\tPublished on:<\/span>\n\t\t\t\n\t\t\t\t
\n\t

\n\t\tEchoes of Independence : Celebration of 77th Independence Day Rings with Resolute Patriotism at MIT-WPU<\/a>\n\t<\/h2>\n<\/header>\n\n\t\t\t
\n\t\t\t\t

Amidst an atmosphere charged with pride, the celebration of India’s 77th Independence Day at MIT-WPU resonated with unity and purpose.<\/p>\n\t\t\t<\/div>\n\t\t\n<\/a>\n<\/article><\/div>

\n\t
\n\t\t
\"\"<\/figure>\t<\/div>\n\n
\n\t
\n\t\t
\n\t\t\t\n\t\t\t\tAuthor<\/span>\n\t\t\t\t\t\n\t\t\n\t\t\trmtvinodh<\/a>\t\t<\/span>\n\t<\/span>\n\t\t\t\t<\/span>\n\t\t<\/div>\n\n\t\t
\n\t\t\tPublished on:<\/span>\n\t\t\t\n\t\t\t\t
\n\t

\n\t\tAn Evening of Memories and Reconnections: MIT-WPU US-Midwest Chapter Alumni Embrace Nostalgia at India Garden, Indianapolis, USA<\/a>\n\t<\/h2>\n<\/header>\n\n\t\t\t
\n\t\t\t\t

Commencing at 6 PM, the MIT-WPU US-Midwest Chapter Alumni Meet marked a beautiful journey back in time, as alumni gathered<\/p>\n\t\t\t<\/div>\n\t\t\n<\/a>\n<\/article><\/div>

\n\t
\n\t\t
\"\"<\/figure>\t<\/div>\n\n
\n\t
\n\t\t
\n\t\t\t\n\t\t\t\tAuthor<\/span>\n\t\t\t\t\t\n\t\t\n\t\t\trmtvinodh<\/a>\t\t<\/span>\n\t<\/span>\n\t\t\t\t<\/span>\n\t\t<\/div>\n\n\t\t
\n\t\t\tPublished on:<\/span>\n\t\t\t\n\t\t\t\t
\n\t

\n\t\tBlood Donation Drive<\/a>\n\t<\/h2>\n<\/header>\n\n\t\t\t
\n\t\t\t\t

In honor of the 40th Foundation Day of MAEER, we are elated to share the success of the Blood Donation<\/p>\n\t\t\t<\/div>\n\t\t\n<\/a>\n<\/article><\/div>

\n\t
\n\t\t
\"\"<\/figure>\t<\/div>\n\n
\n\t
\n\t\t
\n\t\t\t\n\t\t\t\tAuthor<\/span>\n\t\t\t\t\t\n\t\t\n\t\t\trmtvinodh<\/a>\t\t<\/span>\n\t<\/span>\n\t\t\t\t<\/span>\n\t\t<\/div>\n\n\t\t
\n\t\t\tPublished on:<\/span>\n\t\t\t\n\t\t\t\t
\n\t

\n\t\tBonds Forged, Dreams Ignited: Day #2 of Shubharambh<\/a>\n\t<\/h2>\n<\/header>\n\n\t\t\t
\n\t\t\t\t

On the second day of Shubharambh, the Student Induction Programme at MIT-WPU, air was filled with excitement and enthusiasm, as<\/p>\n\t\t\t<\/div>\n\t\t\n<\/a>\n<\/article><\/div>

\n\t
\n\t\t
\"\"<\/figure>\t<\/div>\n\n
\n\t
\n\t\t
\n\t\t\t\n\t\t\t\tAuthor<\/span>\n\t\t\t\t\t\n\t\t\n\t\t\trmtvinodh<\/a>\t\t<\/span>\n\t<\/span>\n\t\t\t\t<\/span>\n\t\t<\/div>\n\n\t\t
\n\t\t\tPublished on:<\/span>\n\t\t\t\n\t\t\t\t
\n\t

\n\t\tKalaEduScope<\/a>\n\t<\/h2>\n<\/header>\n\n\t\t\t
\n\t\t\t\t

Every stroke of the brush, every stitch on the cloth, and every word on the page is an opportunity for<\/p>\n\t\t\t<\/div>\n\t\t\n<\/a>\n<\/article><\/div>

\n\t
\n\t\t
\"\"<\/figure>\t<\/div>\n\n
\n\t
\n\t\t
\n\t\t\t\n\t\t\t\tAuthor<\/span>\n\t\t\t\t\t\n\t\t\n\t\t\trmtvinodh<\/a>\t\t<\/span>\n\t<\/span>\n\t\t\t\t<\/span>\n\t\t<\/div>\n\n\t\t
\n\t\t\tPublished on:<\/span>\n\t\t\t\n\t\t\t\t
\n\t

\n\t\tIngraining Leadership Skills!<\/a>\n\t<\/h2>\n<\/header>\n\n\t\t\t
\n\t\t\t\t

Renowned Indian author, activist, and motivational speaker Mr. Shiv Khera graced MIT-WPU’s Hi- Impact Leadership programme from 17 -19 march<\/p>\n\t\t\t<\/div>\n\t\t\n<\/a>\n<\/article><\/div>

\n\t
\n\t\t
\"\"<\/figure>\t<\/div>\n\n
\n\t
\n\t\t
\n\t\t\t\n\t\t\t\tAuthor<\/span>\n\t\t\t\t\t\n\t\t\n\t\t\trmtvinodh<\/a>\t\t<\/span>\n\t<\/span>\n\t\t\t\t<\/span>\n\t\t<\/div>\n\n\t\t
\n\t\t\tPublished on:<\/span>\n\t\t\t\n\t\t\t\t
\n\t

\n\t\tHackMIT-WPU \u201823<\/a>\n\t<\/h2>\n<\/header>\n\n\t\t\t
\n\t\t\t\t

Organized by Innovation Hub in collaboration with Google Developers Student Club, HackMITWPU 2023 was an innovation platform brought to the<\/p>\n\t\t\t<\/div>\n\t\t\n<\/a>\n<\/article><\/div>

\n\t
\n\t\t
\"\"<\/figure>\t<\/div>\n\n
\n\t
\n\t\t
\n\t\t\t\n\t\t\t\tAuthor<\/span>\n\t\t\t\t\t\n\t\t\n\t\t\trmtvinodh<\/a>\t\t<\/span>\n\t<\/span>\n\t\t\t\t<\/span>\n\t\t<\/div>\n\n\t\t
\n\t\t\tPublished on:<\/span>\n\t\t\t\n\t\t\t\t
\n\t

\n\t\tInternational Women’s Day<\/a>\n\t<\/h2>\n<\/header>\n\n\t\t\t
\n\t\t\t\t

As you are aware that every year, we celebrate the 8th of March as International Women’s Day. At MIT World<\/p>\n\t\t\t<\/div>\n\t\t\n<\/a>\n<\/article><\/div>

\n\t
\n\t\t
\"\"<\/figure>\t<\/div>\n\n
\n\t
\n\t\t
\n\t\t\t\n\t\t\t\tAuthor<\/span>\n\t\t\t\t\t\n\t\t\n\t\t\tuser<\/a>\t\t<\/span>\n\t<\/span>\n\t\t\t\t<\/span>\n\t\t<\/div>\n\n\t\t
\n\t\t\tPublished on:<\/span>\n\t\t\t\n\t\t\t\t
\n\t

\n\t\tiDid – Design Store<\/a>\n\t<\/h2>\n<\/header>\n\n\t\t\t
\n\t\t\t\t

iDid is MIT ID’s very own design store and a student initiative, founded in 2009. It is an avenue for<\/p>\n\t\t\t<\/div>\n\t\t\n<\/a>\n<\/article><\/div>

\n\t
\n\t\t
\"\"<\/figure>\t<\/div>\n\n
\n\t
\n\t\t
\n\t\t\t\n\t\t\t\tAuthor<\/span>\n\t\t\t\t\t\n\t\t\n\t\t\tuser<\/a>\t\t<\/span>\n\t<\/span>\n\t\t\t\t<\/span>\n\t\t<\/div>\n\n\t\t
\n\t\t\tPublished on:<\/span>\n\t\t\t\n\t\t\t\t
\n\t

\n\t\tConvocation Ceremony<\/a>\n\t<\/h2>\n<\/header>\n\n\t\t\t
\n\t\t\t\t

The 4th Convocation Ceremony- The Dikshant Samaroh of MIT-World Peace University took place with great enthusiasm at the World Peace<\/p>\n\t\t\t<\/div>\n\t\t\n<\/a>\n<\/article><\/div>

\n\t
\n\t\t
\"\"<\/figure>\t<\/div>\n\n
\n\t
\n\t\t
\n\t\t\t\n\t\t\t\tAuthor<\/span>\n\t\t\t\t\t\n\t\t\n\t\t\tuser<\/a>\t\t<\/span>\n\t<\/span>\n\t\t\t\t<\/span>\n\t\t<\/div>\n\n\t\t
\n\t\t\tPublished on:<\/span>\n\t\t\t\n\t\t\t\t
\n\t

\n\t\tOxygen O2 event<\/a>\n\t<\/h2>\n<\/header>\n\n\t\t\t
\n\t\t\t\t\t\t\t<\/div>\n\t\t\n<\/a>\n<\/article><\/div>
\n\t
\n\t\t
\"\"<\/figure>\t<\/div>\n\n
\n\t
\n\t\t
\n\t\t\t\n\t\t\t\tAuthor<\/span>\n\t\t\t\t\t\n\t\t\n\t\t\tuser<\/a>\t\t<\/span>\n\t<\/span>\n\t\t\t\t<\/span>\n\t\t<\/div>\n\n\t\t
\n\t\t\tPublished on:<\/span>\n\t\t\t\n\t\t\t\t
\n\t

\n\t\tInauguration – CSI Student Chapter<\/a>\n\t<\/h2>\n<\/header>\n\n\t\t\t
\n\t\t\t\t

The Computer Society of India (CSI) Student Chapter was inaugurated at Avantika University on 30th January 2023. The School of<\/p>\n\t\t\t<\/div>\n\t\t\n<\/a>\n<\/article><\/div>

\n\t
\n\t\t
\"\"<\/figure>\t<\/div>\n\n
\n\t
\n\t\t
\n\t\t\t\n\t\t\t\tAuthor<\/span>\n\t\t\t\t\t\n\t\t\n\t\t\tuser<\/a>\t\t<\/span>\n\t<\/span>\n\t\t\t\t<\/span>\n\t\t<\/div>\n\n\t\t
\n\t\t\tPublished on:<\/span>\n\t\t\t\n\t\t\t\t
\n\t

\n\t\tTexephyr<\/a>\n\t<\/h2>\n<\/header>\n\n\t\t\t
\n\t\t\t\t

Texephyr, a national-level tech fest organized by the students of MIT WPU Pune provides a platform for creative minds nationwide<\/p>\n\t\t\t<\/div>\n\t\t\n<\/a>\n<\/article><\/div>

\n\t
\n\t\t
\"\"<\/figure>\t<\/div>\n\n
\n\t
\n\t\t
\n\t\t\t\n\t\t\t\tAuthor<\/span>\n\t\t\t\t\t\n\t\t\n\t\t\tuser<\/a>\t\t<\/span>\n\t<\/span>\n\t\t\t\t<\/span>\n\t\t<\/div>\n\n\t\t
\n\t\t\tPublished on:<\/span>\n\t\t\t\n\t\t\t\t
\n\t

\n\t\tUntapped Frequencies<\/a>\n\t<\/h2>\n<\/header>\n\n\t\t\t
\n\t\t\t\t

\u2018Untapped Frequencies\u2019 is our attempt to tap into these undiscovered pulses and lend the world a transceiver to be able<\/p>\n\t\t\t<\/div>\n\t\t\n<\/a>\n<\/article><\/div>

\n\t
\n\t\t
\"\"<\/figure>\t<\/div>\n\n
\n\t
\n\t\t
\n\t\t\t\n\t\t\t\tAuthor<\/span>\n\t\t\t\t\t\n\t\t\n\t\t\tuser<\/a>\t\t<\/span>\n\t<\/span>\n\t\t\t\t<\/span>\n\t\t<\/div>\n\n\t\t
\n\t\t\tPublished on:<\/span>\n\t\t\t\n\t\t\t\t
\n\t

\n\t\tHack MIT-WPU<\/a>\n\t<\/h2>\n<\/header>\n\n\t\t\t
\n\t\t\t\t

MIT World Peace University is here with a great opportunity for all young minds who bear an ocean of innovative<\/p>\n\t\t\t<\/div>\n\t\t\n<\/a>\n<\/article><\/div>

\n\t
\n\t\t
\"\"<\/figure>\t<\/div>\n\n
\n\t
\n\t\t
\n\t\t\t\n\t\t\t\tAuthor<\/span>\n\t\t\t\t\t\n\t\t\n\t\t\tuser<\/a>\t\t<\/span>\n\t<\/span>\n\t\t\t\t<\/span>\n\t\t<\/div>\n\n\t\t
\n\t\t\tPublished on:<\/span>\n\t\t\t\n\t\t\t\t
\n\t

\n\t\tMIT-WPU Design Xpo<\/a>\n\t<\/h2>\n<\/header>\n\n\t\t\t
\n\t\t\t\t

The MIT-WPU Design Xpo is a 3-day event aiming to proudly showcase and celebrate the knowledge, skills, achievements, and experience<\/p>\n\t\t\t<\/div>\n\t\t\n<\/a>\n<\/article><\/div>

\n\t
\n\t\t
\"\"<\/figure>\t<\/div>\n\n
\n\t
\n\t\t
\n\t\t\t\n\t\t\t\tAuthor<\/span>\n\t\t\t\t\t\n\t\t\n\t\t\tuser<\/a>\t\t<\/span>\n\t<\/span>\n\t\t\t\t<\/span>\n\t\t<\/div>\n\n\t\t
\n\t\t\tPublished on:<\/span>\n\t\t\t\n\t\t\t\t
\n\t

\n\t\tAaarohan<\/strong><\/a>\n\t<\/h2>\n<\/header>\n\n\t\t\t