25 lines
871 B
HTML
25 lines
871 B
HTML
{% extends "base.html" %}
|
|
{% load feed_views %}
|
|
{% load banner_images %}
|
|
{% load static from staticfiles %}
|
|
|
|
{% block content %}
|
|
|
|
{% show_banner_images %}
|
|
|
|
<h2>Introduction</h2>
|
|
<p>Hackspaces are a shared space where artists, designers, makers, hackers, programmers, tinkerers, professionals and hobbyists can work on their projects, share knowledge and collaborate.</p>
|
|
<p>We now how a space as of March 2017, we are now in the process of kitting it out with tools to facilitate working on your projects, At the moment, communication is via google groups, email, and the website. If you're at all intrested please join our mailing list and say hi.</p>
|
|
|
|
{% show_feeds %}
|
|
{% endblock content %}
|
|
|
|
{% block javascript %}
|
|
{{ block.super }}
|
|
<script type="text/javascript">
|
|
$(document).ready(function(){
|
|
$('.carousel').carousel();
|
|
});
|
|
</script>
|
|
{% endblock %}
|