Union Baptist Church (Hartford, Connecticut)

The Union Baptist Church is a historic church at 1913 and 1921 Main Street in Hartford, Connecticut. Originally built by an Episcopal congregation, it has for many years been home to an African-American Baptist congregation, which under the leadership of Rev. John C. Jackson (1866-1953), played a significant role in advancing the cause of civil rights in the state.[2] The church, and its adjacent parsonage, were listed on the National Register of Historic Places in 1979.[1]

Union Baptist Church
Location1913 and 1921 Main St., Hartford, Connecticut
Coordinates41°46′52″N 72°40′37″W
Area1 acre (0.40 ha)
Built1871 (1871)
ArchitectCongdon, Henry M.
Architectural styleGothic, Early English Gothic Revival
NRHP reference No.79002634[1]
Added to NRHPAugust 15, 1979

Architecture and history

The Union Baptist Church is locate in Hartford's northern Clay-Arsenal neighborhood, on the west side of Main Street near its junction with Mahl Avenue. It is an Early English Gothic stone structure, designed by Henry Martyn Congdon and built in 1871, with a number of later additions. It has a roughly cruciform plan, with a rounded apse and short transepts. The main entrance is set near the rear end of the south side, under a Stick style gabled portico. Modern additions housing offices and other facilities extend further to the rear.[2]

The church was built in 1871, and was original known as the Saint Thomas Episcopal Church, honoring Thomas Brownell, the founder of Hartford's Trinity College. It was acquired by the Baptist congregation of Rev. John C. Jackson in 1925; this congregation had been founded in 1871 by a group of freed slaves from Virginia. Jackson was an early force in advancing civil rights in Connecticut, and is credited with securing a position for the first African-American teacher in the city's public schools. Members of the congregation have also historically occupied important civic and social positions in the community.[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.

See also

References

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