Compare commits
10 commits
d3c3d882c6
...
54740b49fb
Author | SHA1 | Date | |
---|---|---|---|
|
54740b49fb | ||
|
a726124475 | ||
|
c46e6f539a | ||
|
3f99f03cd1 | ||
|
95573ac934 | ||
|
532d01dd22 | ||
|
5bd39e16dd | ||
|
bf2f226b8d | ||
|
6be746c882 | ||
|
f13ae1edf1 |
5 changed files with 73 additions and 9 deletions
|
@ -4,6 +4,13 @@
|
|||
|
||||
{% sponsor_levels as levels %}
|
||||
|
||||
<p>Conservancy makes CopyleftConf happen. Please consider becoming a
|
||||
Supporter of our work year-round!</p>
|
||||
|
||||
<div class="conservancy-support-button">
|
||||
<div><a href="https://sfconservancy.org/supporter/">Support<br>now!</a></div>
|
||||
</div>
|
||||
|
||||
<h3>Sponsors</h3>
|
||||
|
||||
<div class="sponsor-list">
|
||||
|
@ -14,7 +21,7 @@
|
|||
|
||||
{% for sponsor in level.sponsors %}
|
||||
<div>
|
||||
{% if sponsor.website_logo %}
|
||||
{% if sponsor.sponsor_logo %}
|
||||
<a href="{{ sponsor.external_url }}">
|
||||
<img src="{% thumbnail sponsor.website_logo '600x360' %}" alt="{{ sponsor.name }}">
|
||||
</a>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<p>
|
||||
<a href="/code-of-conduct">Code of Conduct</a>
|
||||
| <a href="https://sfconservancy.org/privacy-policy/">Privacy Policy</a>
|
||||
| <a href="https://k.sfconservancy.org/CopyleftConf/copyleftconf-website">Website Source Code</a>
|
||||
| <a href="https://k.sfconservancy.org/CopyleftConf/copyleftconf-website/files/copyleftconf2020-final/">Website Source Code</a>
|
||||
</p>
|
||||
|
||||
|
||||
|
|
|
@ -30,11 +30,7 @@ provides a non-profit home and infrastructure for FLOSS projects. Conservancy is
|
|||
organizations currently working on enforcement of the GPL, the world’s most popular copyleft license.</p>
|
||||
|
||||
<p>This event will provide a friendly and safe place for discussion of all aspects of copyleft, including as a
|
||||
key strategy for defending software freedom! Your sponsorship will help make this a sustainable annual
|
||||
event, that can welcome students and scholars at a minimal cost. Any questions about financial, coffee
|
||||
break or in-kind sponsorship options should be directed to <a href="mailto:contact@copyleftconf.org">contact@copyleftconf.org</a>.</p>
|
||||
|
||||
<p><strong><a href="/tickets">Tickets on sale now!</a></strong> Get ‘em while they last!</p>
|
||||
key strategy for defending software freedom!</p>
|
||||
</div>
|
||||
|
||||
{% endblock %}
|
||||
|
|
|
@ -1,5 +1,37 @@
|
|||
{% extends "symposion/sponsorship/list_.html" %}
|
||||
|
||||
{% load sponsorship_tags %}
|
||||
{% load thumbnail %}
|
||||
|
||||
{% block lede %}
|
||||
We're grateful to the following organizations, who've made a substantial contribution to CopyleftConf 2020. Learn how you can join us by checking out <a href="/sponsors/become-a-sponsor">our prospectus</a>.
|
||||
We're grateful to the following organizations, who've made a substantial contribution to CopyleftConf 2020.
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
{% sponsor_levels as levels %}
|
||||
{% for level in levels %}
|
||||
{% if level.sponsors %}
|
||||
<h2>{{ level.name }}</h2>
|
||||
|
||||
{% for sponsor in level.sponsors %}
|
||||
<div class="row">
|
||||
{% if sponsor.sponsor_logo %}
|
||||
<div class="col-md-4">
|
||||
<h2>
|
||||
<a href="{{ sponsor.external_url }}">
|
||||
<img style="width: 90%; margin-right: 10%;" src="{% thumbnail sponsor.website_logo '600x320' %}" alt="{{ sponsor.name }}" />
|
||||
</a>
|
||||
</h2>
|
||||
</div>
|
||||
<div class="col-md-8">
|
||||
{% else %}
|
||||
<div class="col-md-12">
|
||||
{% endif %}
|
||||
<h3><a href="{{ sponsor.external_url }}">{{ sponsor.name }}</a></h3>
|
||||
<p>{{ sponsor.listing_text|urlize|linebreaks }}</p>
|
||||
</div>
|
||||
</div>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
{% endblock %}
|
||||
|
|
|
@ -646,9 +646,38 @@ body.login #content_body .row > div.col-md-9 > p + div.container {
|
|||
}
|
||||
|
||||
table.calendar, table.calendar td:empty {
|
||||
background-color: lightgray;
|
||||
background-color: #ddd;
|
||||
}
|
||||
|
||||
table.calendar th, table.calendar td {
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.conservancy-support-button {
|
||||
background-color: #F0FFB8;
|
||||
border-color: #577632;
|
||||
border-radius: 50%;
|
||||
border-style: outset;
|
||||
border-width: .3em;
|
||||
color: #577632;
|
||||
display: inline-block;
|
||||
font-size: xx-large;
|
||||
font-weight: bold;
|
||||
max-width: 95%;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
width: 6em;
|
||||
margin-left: 50%;
|
||||
transform: translateX(-50%);
|
||||
|
||||
a {
|
||||
color: inherit;
|
||||
text-decoration: none !important;
|
||||
}
|
||||
|
||||
div {
|
||||
height: 0;
|
||||
padding-bottom: 75%;
|
||||
padding-top: 25%;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue