da venerdì 12
a domenica 14 dicembre 2025
venerdì 12 dicembre h 19:00-23:00
sabato 13 dicembre h 14:00-20:00
domenica 14 dicembre h 14:00-20:00
Campo Teatrale
via Casoretto 41/a
Presentazione
L’invito è un ritorno all’origine dello stare: quanto è difficile essere presenti senza dover riempire spazio e azione scenica o “spingere”?
Ci si allenerà a trovare una connessione tra mente, emotività e corpo e a trovare una misura tra un dire che risulti credibile e veritiero, ma che abbia la possibilità di essere efficace su un palcoscenico.
Il lavoro sarà incentrato su esercizi volti al potenziamento dell’ascolto e della relazione scenica.
Infine, a partire, dall’analisi guidata di alcune scene tratte da Il gabbiano di Anton Čechov cercheremo di mettere nella pratica di scena i concetti teorici sperimentati nelle esercitazioni.
Materiali e consegne
Caricamento delle opzioni di acquisto in corso...
/* if (!empty($course['costs']['title_text'])) {
$is_carnet = $course['costs']['is_carnet'];
$args = [
'title' => $course['costs']['title_text'],
'description' => $course['costs']['description_html'],
'is_carnet' => $is_carnet,
'product_sections' => []
];
if (is_array($course['costs']['products_list']) && count($course['costs']['products_list']) > 0) {
foreach ($course['costs']['products_list'] as $product_row) {
$product_section = [
'title' => $product_row['title_text'],
'description' => $product_row['description_html'],
'products' => []
];
if ($is_carnet) {
foreach ($product_row['carnets'] as $index => $carnet_id) {
$product = wc_get_product($carnet_id);
$product_acf_fields = get_transient('mdc_wc_product_acf_fields_' . $carnet_id);
if (!$product_acf_fields) {
$product_acf_fields = get_fields($product->get_id());
set_transient('mdc_wc_product_acf_fields_' . $carnet_id, $product_acf_fields, 3600);
}
$product->acf_fields = $product_acf_fields;
$product_section['products'][] = $product;
}
} else if (isset($product_row['enrollments']) && is_array($product_row['enrollments']) && count($product_row['enrollments']) > 0) {
foreach ($product_row['enrollments'] as $product_id) {
$product_section['products'][] = wc_get_product($product_id);
}
}
$args['product_sections'][] = $product_section;
}
}
get_template_part('/templates/single-course-costs', null, $args);
} */
# Secondary Content
if (!empty($course['secondary_content'])) {
foreach ($course['secondary_content'] as $secondary_content) {
$args = [
'title' => $secondary_content['title_text'],
'content' => $secondary_content['content_html']
];
get_template_part('/templates/single-course-text-block', null, $args);
}
}
# Free Trial
if (!empty($course['free_trial']['text_html'])) {
$args = [
'title' => $course['free_trial']['title'],
'content' => $course['free_trial']['text_html'],
'link' => $course['free_trial']['btn_link']
];
get_template_part('/templates/single-course-free-trial', null, $args);
}
# Teachers
if (!empty($course['teachers']['teachers'])) {
$teachers = array_map(function ($teacher_id) {
$teacher = get_transient('mdc_teacher_' . $teacher_id);
if (!$teacher) {
$teacher = get_fields($teacher_id);
get_transient('mdc_teacher_' . $teacher_id, $teacher, 3600);
}
return $teacher;
}, $course['teachers']['teachers']);
$args = [
'title' => $course['teachers']['title'],
'teachers' => $teachers
];
get_template_part('/templates/single-course-teachers', null, $args);
}
?>