24 lines
515 B
HTML
24 lines
515 B
HTML
{% extends 'main_base.html' %}
|
|
|
|
{% block title %}
|
|
Home
|
|
{% endblock %}
|
|
|
|
{% block extra_head %}
|
|
<link rel="stylesheet" href="/static/css/main/home.css" />
|
|
{% endblock %}
|
|
|
|
{% block pageTitle %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="centerSentence">
|
|
Welcome to the <a href="/about">Edgware Road Project</a>.
|
|
Here you can create a <a href="/publication">publication</a> or
|
|
browse the <a href="/archive">archive</a> of past works
|
|
created by the artists involved.
|
|
</div>
|
|
|
|
{% endblock %}
|