Compare commits

..

10 commits

5 changed files with 73 additions and 9 deletions

View file

@ -4,6 +4,13 @@
{% sponsor_levels as levels %} {% 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> <h3>Sponsors</h3>
<div class="sponsor-list"> <div class="sponsor-list">
@ -14,7 +21,7 @@
{% for sponsor in level.sponsors %} {% for sponsor in level.sponsors %}
<div> <div>
{% if sponsor.website_logo %} {% if sponsor.sponsor_logo %}
<a href="{{ sponsor.external_url }}"> <a href="{{ sponsor.external_url }}">
<img src="{% thumbnail sponsor.website_logo '600x360' %}" alt="{{ sponsor.name }}"> <img src="{% thumbnail sponsor.website_logo '600x360' %}" alt="{{ sponsor.name }}">
</a> </a>

View file

@ -5,7 +5,7 @@
<p> <p>
<a href="/code-of-conduct">Code of Conduct</a> <a href="/code-of-conduct">Code of Conduct</a>
| <a href="https://sfconservancy.org/privacy-policy/">Privacy Policy</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> </p>

View file

@ -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 worlds most popular copyleft license.</p> organizations currently working on enforcement of the GPL, the worlds 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 <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 key strategy for defending software freedom!</p>
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>
</div> </div>
{% endblock %} {% endblock %}

View file

@ -1,5 +1,37 @@
{% extends "symposion/sponsorship/list_.html" %} {% extends "symposion/sponsorship/list_.html" %}
{% load sponsorship_tags %}
{% load thumbnail %}
{% block lede %} {% 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 %} {% endblock %}

View file

@ -646,9 +646,38 @@ body.login #content_body .row > div.col-md-9 > p + div.container {
} }
table.calendar, table.calendar td:empty { table.calendar, table.calendar td:empty {
background-color: lightgray; background-color: #ddd;
} }
table.calendar th, table.calendar td { table.calendar th, table.calendar td {
background-color: #fff; 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%;
}
}