Araxá Esporte Clube

Araxá Esporte Clube, commonly referred to as Araxá, is a currently inactive Brazilian football club based in Araxá, Minas Gerais. It last played in the Campeonato Mineiro 2ª Divisão, the third tier of the Minas Gerais state football league. Founded in 1958, the club played only once at the nacional level, finishing the 2013 Campeonato Brasileiro Série D in the 38th position.

Araxá
Full nameAraxá Esporte Clube
Nickname(s)Ganso (Goose)
FoundedSeptember 20, 1958 (1958-09-20)
GroundFausto Alvim, Araxá, Minas Gerais, Brazil
Capacity5,500
PresidentDailsom Lettieri
Head coachFlávio Lopes
2018Mineiro 2ªDivisão, 4th
WebsiteClub website

History

The club was founded on September 20, 1958.[1] Araxá won the Campeonato Mineiro Second Level in 1966, 1978, 1990 and in 2012, and the Campeonato Mineiro Third Level in 2007 and in 2011.

Achievements

Stadium

Araxá Esporte Clube play their home games at Estádio Municipal Fausto Alvim.[1] The stadium has a maximum capacity of 4,500 people.[2]

gollark: ```rust let with_db = warp::any().map(move || pool.clone()); let static_files = warp::path("assets").and(warp::fs::dir("assets")); let view_page = warp::path!(String).and(warp::get()).and(with_db.clone()) // repeating the next bit for every route is kind of bad, see if it can be changed somehow .and_then(|title, db| async { error_to_http_response(view_page(db, title).await) }); let editor_page = warp::path!(String / "edit").and(warp::get()).and(with_db.clone()) .and_then(|title, db| async { error_to_http_response(editor_page(db, title).await) }); let save_edit = warp::path!(String / "edit").and(warp::post()).and(warp::body::form()).and(with_db) .and_then(|title, form, db| async { error_to_http_response(save_edit(db, title, form).await) }); let not_found = warp::any().map(|| warp::reply::with_status("404 Not Found", http::StatusCode::NOT_FOUND)); let main = editor_page.or(save_edit).or(view_page); let app = static_files.or(main).or(not_found);```See, this is how you SHOULD design routes: incomprehensibly.
gollark: no!
gollark: Your *routes* shouldn't be config. They're code. They're part of the application.
gollark: What? Why is that a config file?! You should be defining routes in your code.
gollark: Yes, that is a bit weird and not ideal.

References

  1. Rodolfo Rodrigues (2009). Escudos dos Times do Mundo Inteiro. Panda Books. p. 55.
  2. "CNEF - Cadastro Nacional de Estádios de Futebol" (PDF) (in Portuguese). Confederação Brasileira de Futebol. Archived from the original (PDF) on May 10, 2013. Retrieved April 4, 2011.

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.