22 lines
546 B
HTML
22 lines
546 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="contact">Edgware Road Project</a>.
|
|
Here you can <a href="publish">create new</a> or <a href="browse">browse existing</a> publications, and view the <a href="archive">archive</a> of materials generated by the artists involved.
|
|
</div>
|
|
|
|
{% endblock %}
|