1
0
Fork 0
Browse Source

add styling and content to home page.

pull/7/head
Craig Oates 4 years ago
parent
commit
628ea5a9a2
  1. BIN
      app/static/images/logo.png
  2. 37
      app/static/styles/main.css
  3. 40
      app/templates/home.html

BIN
app/static/images/logo.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

37
app/static/styles/main.css

@ -1,3 +1,38 @@
html {
font-size: 12px;
font-family: arial, sans-serif;
background: #f5f5f5;
color: #424242;
}
main {
display: flex;
justify-content: center;
padding: 20px;
}
main div {
max-width: 800px;
left-margin: auto;
right-margin: auto;
}
main div .header {
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
}
main div .header img {
width: 50px;
}
main div .header h1 {
text-align: center;
font-size: 20px;
}
main div h2 {
font-size: 16px;
}

40
app/templates/home.html

@ -1,4 +1,42 @@
{% extends "layout.html" %}
{% block content %}
<h1>Return to Ritherdon Project</h1>
<main>
<div>
<div class="header">
<img src="{{ url_for('static', filename='images/logo.png') }}" alt="logo"/>
<h1>Return to Ritherdon Project</h1>
</div>
<div class="status-bar">
</div>
<h2>About the Project</h2>
<p>
"Return to Ritherdon" is a two year residency at Ritherdon & Co Ltd, a manufacturer of metal enclosures based in Darwen, Lancashire U.K.
</p>
<h2>About the Artist: Nicola Ellis</h2>
<p>Nicola is interested in the properties, value, function and circulation of materials. She has a current focus on metals and the companies that work with them, her work draws on the visual and spoken language of industry operations, fabrication and profiling processes. The parameters for her sculpture, installation, drawings and videos include relationships between people, businesses and technology.
</p>
<h2>About the Gallery: Castlefield Gallery</h2>
<p>
Established by artists in 1984, Castlefield Gallery is the first public contemporary visual art gallery to have opened in Manchester. The arrival of Castlefield Gallery in the city was a significant catalyst of what became a period of rapid cultural growth, and the increase of the presence of visual artists in the city and city region. As a registered charity, our mission drives our work to focus on artistic and career development for artists, as well as deepening audiences’ relationship to contemporary art. Over the last three decades we have become an integral part of the North of England’s cultural fabric and a vital support to artists across the North West and further afield.
</p>
<h2>Links</h2>
<ul>
<li><a href="http://www.nicolaellis.com/" title="Click this to visit Nicola's personal website.">Nicola's Personal Website</a></li>
<li><a href="https://www.castlefieldgallery.co.uk/" title="Click this to visit Castlefield's website.">Castlefield's Website</a></li>
<li><a href="{{ url_for('/api./api_swagger_ui_index') }}" title="Click this to inspect this site's A.P.I.">Swagger A.P.I.</a></li>
</ul>
</div>
</main>
{% endblock content %}