26 lines
964 B
HTML
26 lines
964 B
HTML
{% extends 'base.html' %}
|
|
{% load static from staticfiles %}
|
|
|
|
{% block title %}
|
|
Call for Sponsors | {{ block.super }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2>{{ camp.title }} Sponsors</h2>
|
|
<p class="lead">
|
|
We are preparing {{ camp.title }} and we need sponsors. Please read our <a href="{% url 'call-for-sponsors' camp_slug=camp.slug %}">Call for Sponsors</a> if you want to become a sponsor or if you work for an organisation which might be able to help.
|
|
</p>
|
|
|
|
<p class="lead">This is an alphabetical list of the sponsors for {{ camp.title }}. We are very grateful for the help we are getting and we look forward to adding more names to this list!</p>
|
|
<div class="text-center">
|
|
<hr>
|
|
<p class="lead">
|
|
<a href="https://www.bornfiber.dk">
|
|
<img src="{% static 'img/sponsors/bornfiber-logoweb.png' %}" class="img-responsive center-block" alt="BornFiber Logo">
|
|
</a>
|
|
Internet uplink and bandwidth
|
|
</p>
|
|
<hr>
|
|
</div>
|
|
{% endblock %}
|