copyleftconf-website/pinaxcon/templates/_footer.html

41 lines
1.5 KiB
HTML
Raw Normal View History

2017-08-14 00:21:02 +00:00
{% load staticfiles %}
2017-10-11 00:50:27 +00:00
{% load sponsorship_tags %}
2017-08-13 02:11:38 +00:00
<div class="row">
2017-08-14 00:21:02 +00:00
2017-08-16 03:36:15 +00:00
<div class="logo">
2017-08-14 00:21:02 +00:00
<div class="circle">
<div class="fill" style="background-image: url('{% static "images/logo.svg" %}');"></div>
</div>
</div>
2017-08-16 03:36:15 +00:00
<div class="footer-copy">
2018-06-29 22:18:01 +00:00
<p>&copy; 2018 North Bay Python, member project of <a href="https://sfconservancy.org" >Software Freedom Conservancy</a>, a 501(c)(3) charity.</p>
2017-08-11 23:07:03 +00:00
2017-10-11 00:50:27 +00:00
{% sponsors "platinum" as platinum %}
2018-06-29 22:18:01 +00:00
{% comment %}
2017-10-11 00:50:27 +00:00
<p>We acknowledge the support of our Platinum sponsor{{ platinum|length|pluralize}},
{% for sponsor in platinum %}
{% if forloop.last and not forloop.first %}
and
{% endif %}
{{ sponsor }}{% if forloop.last %}.{% endif %}
{% endfor %}
2018-06-29 22:18:01 +00:00
{% endcomment %}
<p>
<a href="https://facebook.com/northbaypython">Facebook</a>
| <a href="https://twitter.com/northbaypython">Twitter</a>
| <a href="https://www.youtube.com/channel/UCLc1vUexbRTlRBJcUG9U6ug">YouTube</a>
| <a href="https://webchat.freenode.net/?channels=%23nbpy">IRC</a>
2017-11-11 23:38:42 +00:00
| <a href="/accessibility">Accessibility</a>
| <a href="/code-of-conduct">Code of Conduct</a>
2017-08-23 16:29:37 +00:00
| <a href="/about/colophon">Colophon</a>
| <a href="/terms">Terms and Conditions</a>
2017-08-23 16:29:37 +00:00
</p>
<p>This site is <a href="https://github.com/northbaypython/website">free and open source software</a>, powered by <a href="https://github.com/chrisjrn/symposion/">Symposion</a> and <a href="https://github.com/chrisjrn/registrasion/">Registrasion</a>.</p>
2017-08-13 02:11:38 +00:00
</div>
</div>