The Fillmore Detroit
Deftones played the Fillmore Detroit
on the eve of its official rebranding
|
Former names
|
State Theatre
Palms Theatre
|
Location
|
2115 Woodward Avenue
Detroit, Michigan
|
Coordinates
|
|
Type
|
Concert venue
|
Capacity
|
2,888
|
Construction
|
Opened
|
1925
|
Renovated
|
2007
|
Website
|
.comthefillmoredetroit
|
Francis Palms Building & State Theater
|
|
Location
|
2111 Woodward Avenue
Detroit, Michigan
|
Coordinates
|
|
Built
|
1925
|
Architect
|
C. Howard Crane
|
Architectural style
|
Beaux Arts
|
Governing body
|
Private
|
NRHP Reference #
|
82000551[1]
|
Added to NRHP
|
November 24, 1982
|
The Fillmore Detroit is a multi-use entertainment venue operated by Live Nation. Built in 1925, the Fillmore Detroit was known for most of its history as the State Theatre, and prior to that as the Palms Theatre. It is located near the larger Fox Theatre in the Detroit Theatre District along Woodward Avenue across from Comerica Park and Grand Circus Park. The Fillmore Detroit features a theatre with a Grand Lobby and three levels of seating, as well as the State Bar & Grill which has a separate entrance and is open when the theatre is not hosting events. The Detroit Music Awards are held annually at The Fillmore Detroit in April. The building was listed on the National Register of Historic Places in 1982.[1]
History
The site of the Fillmore was previously home to an earlier theatre known as the Central and then, from 1913-1923, as the Grand Circus Theatre. This theatre was demolished to make way for the 1925 construction of what was then called the Francis Palms Building.[2] The building was named for Francis Palms, a Belgian native who moved to Detroit in 1832 and made his fortune in real estate development.[3] Palms' descendants continued in real estate as the Palms Realty Company,[4] and constructed this building at a time when Detroit's population and the popularity of movies was booming.
The Fillmore Detroit was constructed in 1925 as a movie house in the Renaissance Revival style of architecture. C. Howard Crane was the original architect, and the building is still called the Francis Palms Building.
The theatre was originally called the State Theatre when it opened in 1925. It was renamed the Palms-State Theatre in 1937. In 1949 it was renamed the Palms Theatre. In 1982 it was renamed back to the State Theatre. And in 2007 (as a national re-branding) it was renamed once again, this time the Fillmore Theatre.
The building is twelve stories high and covered with terra cotta, with an eight-story auditorium extending to the rear of the building.[4] The office tower has elaborate Beaux-Arts Italian Renaissance decorations on all but the ground floor, which was modernized in about 1960.[4]
Current use
The Fillmore Detroit is a concert venue for popular music acts as well as hosting many special events . The venues current seating capacity (with standing room only on the main floor) is 2,888. The mezzanine and balcony levels still contain their original theatre seating. Currently the main floor has a standing room capacity of 1530, and the mezzanine and balcony have a combined seating for 1,358.
In March 2007, Live Nation announced that the State Theatre would become the Fillmore Detroit as part of a multi-city extension of the Fillmore brand, similar to what has been done previously with the House of Blues franchise. Various changes were implemented to evoke the Fillmore's iconic venue in San Francisco, California. The official inaugural show under the Fillmore Detroit re-branding was Fergie's June 13, 2007 performance.
Live Nation has continued the gradual restoration of the Italian Renaissance theatre. The outer lobby and rotunda lobby were restored in the 1990s. The grand foyer columns and auditorium proscenium arch were more recent restorations. Live Nation has restored the barrel vaulted ceiling of the three story grand foyer, and has plans to work on the upper reaches of the auditorium in increments.
American Idol
In 2015, American Idol organized one session in Detroit. The February 25th episode featured the Top 12 Guys and the February 26th episode featured the Top 12 Girls from Season 14.
-
The Palms Building houses the Fillmore Detroit theatre
-
-
The Fillmore Detroit was known for most of its history as the State Theatre
References
-- Module:Hatnote -- -- -- -- This module produces hatnote links and links to related articles. It -- -- implements the and meta-templates and includes -- -- helper functions for other Lua hatnote modules. --
local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local mArguments -- lazily initialise Module:Arguments local yesno -- lazily initialise Module:Yesno
local p = {}
-- Helper functions
local function getArgs(frame) -- Fetches the arguments from the parent frame. Whitespace is trimmed and -- blanks are removed. mArguments = require('Module:Arguments') return mArguments.getArgs(frame, {parentOnly = true}) end
local function removeInitialColon(s) -- Removes the initial colon from a string, if present. return s:match('^:?(.*)') end
function p.findNamespaceId(link, removeColon) -- Finds the namespace id (namespace number) of a link or a pagename. This -- function will not work if the link is enclosed in double brackets. Colons -- are trimmed from the start of the link by default. To skip colon -- trimming, set the removeColon parameter to true. checkType('findNamespaceId', 1, link, 'string') checkType('findNamespaceId', 2, removeColon, 'boolean', true) if removeColon ~= false then link = removeInitialColon(link) end local namespace = link:match('^(.-):') if namespace then local nsTable = mw.site.namespaces[namespace] if nsTable then return nsTable.id end end return 0 end
function p.formatPages(...) -- Formats a list of pages using formatLink and returns it as an array. Nil -- values are not allowed. local pages = {...} local ret = {} for i, page in ipairs(pages) do ret[i] = p._formatLink(page) end return ret end
function p.formatPageTables(...) -- Takes a list of page/display tables and returns it as a list of -- formatted links. Nil values are not allowed. local pages = {...} local links = {} for i, t in ipairs(pages) do checkType('formatPageTables', i, t, 'table') local link = t[1] local display = t[2] links[i] = p._formatLink(link, display) end return links end
function p.makeWikitextError(msg, helpLink, addTrackingCategory) -- Formats an error message to be returned to wikitext. If -- addTrackingCategory is not false after being returned from -- Module:Yesno, and if we are not on a talk page, a tracking category -- is added. checkType('makeWikitextError', 1, msg, 'string') checkType('makeWikitextError', 2, helpLink, 'string', true) yesno = require('Module:Yesno') local title = mw.title.getCurrentTitle() -- Make the help link text. local helpText if helpLink then helpText = ' (help)' else helpText = end -- Make the category text. local category if not title.isTalkPage and yesno(addTrackingCategory) ~= false then category = 'Hatnote templates with errors' category = string.format( '%s:%s', mw.site.namespaces[14].name, category ) else category = end return string.format( '%s', msg, helpText, category ) end
-- Format link -- -- Makes a wikilink from the given link and display values. Links are escaped -- with colons if necessary, and links to sections are detected and displayed -- with " § " as a separator rather than the standard MediaWiki "#". Used in -- the template.
function p.formatLink(frame) local args = getArgs(frame) local link = args[1] local display = args[2] if not link then return p.makeWikitextError( 'no link specified', 'Template:Format hatnote link#Errors', args.category ) end return p._formatLink(link, display) end
function p._formatLink(link, display) -- Find whether we need to use the colon trick or not. We need to use the -- colon trick for categories and files, as otherwise category links -- categorise the page and file links display the file. checkType('_formatLink', 1, link, 'string') checkType('_formatLink', 2, display, 'string', true) link = removeInitialColon(link) local namespace = p.findNamespaceId(link, false) local colon if namespace == 6 or namespace == 14 then colon = ':' else colon = end -- Find whether a faux display value has been added with the | magic -- word. if not display then local prePipe, postPipe = link:match('^(.-)|(.*)$') link = prePipe or link display = postPipe end -- Find the display value. if not display then local page, section = link:match('^(.-)#(.*)$') if page then display = page .. ' § ' .. section end end -- Assemble the link. if display then return string.format('%s', colon, link, display) else return string.format('%s%s', colon, link) end end
-- Hatnote -- -- Produces standard hatnote text. Implements the template.
function p.hatnote(frame) local args = getArgs(frame) local s = args[1] local options = {} if not s then return p.makeWikitextError( 'no text specified', 'Template:Hatnote#Errors', args.category ) end options.extraclasses = args.extraclasses options.selfref = args.selfref return p._hatnote(s, options) end
function p._hatnote(s, options) checkType('_hatnote', 1, s, 'string') checkType('_hatnote', 2, options, 'table', true) local classes = {'hatnote'} local extraclasses = options.extraclasses local selfref = options.selfref if type(extraclasses) == 'string' then classes[#classes + 1] = extraclasses end if selfref then classes[#classes + 1] = 'selfref' end return string.format( '
%s
', table.concat(classes, ' '), s )
end
return p-------------------------------------------------------------------------------- -- Module:Hatnote -- -- -- -- This module produces hatnote links and links to related articles. It -- -- implements the and meta-templates and includes -- -- helper functions for other Lua hatnote modules. --
local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local mArguments -- lazily initialise Module:Arguments local yesno -- lazily initialise Module:Yesno
local p = {}
-- Helper functions
local function getArgs(frame) -- Fetches the arguments from the parent frame. Whitespace is trimmed and -- blanks are removed. mArguments = require('Module:Arguments') return mArguments.getArgs(frame, {parentOnly = true}) end
local function removeInitialColon(s) -- Removes the initial colon from a string, if present. return s:match('^:?(.*)') end
function p.findNamespaceId(link, removeColon) -- Finds the namespace id (namespace number) of a link or a pagename. This -- function will not work if the link is enclosed in double brackets. Colons -- are trimmed from the start of the link by default. To skip colon -- trimming, set the removeColon parameter to true. checkType('findNamespaceId', 1, link, 'string') checkType('findNamespaceId', 2, removeColon, 'boolean', true) if removeColon ~= false then link = removeInitialColon(link) end local namespace = link:match('^(.-):') if namespace then local nsTable = mw.site.namespaces[namespace] if nsTable then return nsTable.id end end return 0 end
function p.formatPages(...) -- Formats a list of pages using formatLink and returns it as an array. Nil -- values are not allowed. local pages = {...} local ret = {} for i, page in ipairs(pages) do ret[i] = p._formatLink(page) end return ret end
function p.formatPageTables(...) -- Takes a list of page/display tables and returns it as a list of -- formatted links. Nil values are not allowed. local pages = {...} local links = {} for i, t in ipairs(pages) do checkType('formatPageTables', i, t, 'table') local link = t[1] local display = t[2] links[i] = p._formatLink(link, display) end return links end
function p.makeWikitextError(msg, helpLink, addTrackingCategory) -- Formats an error message to be returned to wikitext. If -- addTrackingCategory is not false after being returned from -- Module:Yesno, and if we are not on a talk page, a tracking category -- is added. checkType('makeWikitextError', 1, msg, 'string') checkType('makeWikitextError', 2, helpLink, 'string', true) yesno = require('Module:Yesno') local title = mw.title.getCurrentTitle() -- Make the help link text. local helpText if helpLink then helpText = ' (help)' else helpText = end -- Make the category text. local category if not title.isTalkPage and yesno(addTrackingCategory) ~= false then category = 'Hatnote templates with errors' category = string.format( '%s:%s', mw.site.namespaces[14].name, category ) else category = end return string.format( '%s', msg, helpText, category ) end
-- Format link -- -- Makes a wikilink from the given link and display values. Links are escaped -- with colons if necessary, and links to sections are detected and displayed -- with " § " as a separator rather than the standard MediaWiki "#". Used in -- the template.
function p.formatLink(frame) local args = getArgs(frame) local link = args[1] local display = args[2] if not link then return p.makeWikitextError( 'no link specified', 'Template:Format hatnote link#Errors', args.category ) end return p._formatLink(link, display) end
function p._formatLink(link, display) -- Find whether we need to use the colon trick or not. We need to use the -- colon trick for categories and files, as otherwise category links -- categorise the page and file links display the file. checkType('_formatLink', 1, link, 'string') checkType('_formatLink', 2, display, 'string', true) link = removeInitialColon(link) local namespace = p.findNamespaceId(link, false) local colon if namespace == 6 or namespace == 14 then colon = ':' else colon = end -- Find whether a faux display value has been added with the | magic -- word. if not display then local prePipe, postPipe = link:match('^(.-)|(.*)$') link = prePipe or link display = postPipe end -- Find the display value. if not display then local page, section = link:match('^(.-)#(.*)$') if page then display = page .. ' § ' .. section end end -- Assemble the link. if display then return string.format('%s', colon, link, display) else return string.format('%s%s', colon, link) end end
-- Hatnote -- -- Produces standard hatnote text. Implements the template.
function p.hatnote(frame) local args = getArgs(frame) local s = args[1] local options = {} if not s then return p.makeWikitextError( 'no text specified', 'Template:Hatnote#Errors', args.category ) end options.extraclasses = args.extraclasses options.selfref = args.selfref return p._hatnote(s, options) end
function p._hatnote(s, options) checkType('_hatnote', 1, s, 'string') checkType('_hatnote', 2, options, 'table', true) local classes = {'hatnote'} local extraclasses = options.extraclasses local selfref = options.selfref if type(extraclasses) == 'string' then classes[#classes + 1] = extraclasses end if selfref then classes[#classes + 1] = 'selfref' end return string.format( '
%s
', table.concat(classes, ' '), s )
end
return p
-
^ a b
-
^
-
^ State Theatre/ Francis Palms Building from Detroit1701
-
^ a b c Palms, Francis, Building and State Theater from the state of Michigan
Further reading
External links
-
The Fillmore Detroit website
-
Cinema Treasures website of old movie houses profiles The State Theatre.
-
Fillmore Detroit Myspace Page
|
|
Areas
|
|
|
Education
|
Primary & Secondary
Schools
|
|
|
Other education
|
|
|
|
Skyscrapers and complexes
|
|
|
Parks
|
|
|
Other landmarks
|
|
|
Detroit People Mover stations
|
|
|
|
|
|
|
Divisions
|
|
|
Subsidiaries
|
|
|
Festivals
|
|
|
House of Blues clubs and theatres
(owned venues in bold)
|
|
|
Other venues
(owned venues in bold)
|
|
|
|
|
Topics
|
|
|
Lists by states
|
|
|
Lists by insular areas
|
|
|
Lists by associated states
|
|
|
Other areas
|
|
|
|
|
|
|
Skyscrapers
|
10 tallest
|
|
|
20 tallest
|
|
|
30 tallest
|
|
|
40 tallest
|
|
|
50 tallest
|
|
|
60 tallest
|
|
|
70 – 195 tallest
|
|
|
New Center
|
|
|
East side
|
|
|
Suburban
|
|
|
|
|
Low rise
under 10 stories
selected
|
Downtown
|
|
|
Midtown
|
|
|
North
|
|
|
East side
|
|
|
Suburban
|
|
|
|
Parks and gardens
|
|
|
Museums and libraries
|
|
|
Religious landmarks
|
|
|
Performance centers
|
|
|
Neighborhood
Historic Districts
|
|
|
|
|
This article was sourced from Creative Commons Attribution-ShareAlike License; additional terms may apply. World Heritage Encyclopedia content is assembled from numerous content providers, Open Access Publishing, and in compliance with The Fair Access to Science and Technology Research Act (FASTR), Wikimedia Foundation, Inc., Public Library of Science, The Encyclopedia of Life, Open Book Publishers (OBP), PubMed, U.S. National Library of Medicine, National Center for Biotechnology Information, U.S. National Library of Medicine, National Institutes of Health (NIH), U.S. Department of Health & Human Services, and USA.gov, which sources content from all federal, state, local, tribal, and territorial government publication portals (.gov, .mil, .edu). Funding for USA.gov and content contributors is made possible from the U.S. Congress, E-Government Act of 2002.
Crowd sourced content that is contributed to World Heritage Encyclopedia is peer reviewed and edited by our editorial staff to ensure quality scholarly research articles.
By using this site, you agree to the Terms of Use and Privacy Policy. World Heritage Encyclopedia™ is a registered trademark of the World Public Library Association, a non-profit organization.