comparison templates/sponsors/index.html @ 397:29d4b5e45423

Use flask to render site and get rid of submodules We don't want to use statically generated html files anymore. We are using flask to do the routing and render the templates for now. This means we also get rid of the submoduels and put everything together in templates/.
author David Soria Parra <davidsp@fb.com>
date Fri, 07 Mar 2014 14:47:13 -0800
parents
children
comparison
equal deleted inserted replaced
396:b3036c323c2d 397:29d4b5e45423
1 {% extends "base.html" %}
2
3
4 {% block content %}
5 <h1>Sponsoring</h1>
6 <h3>Gold Sponsors ($20000 and above)</h3>
7
8 <!-- 20k pixels -->
9
10 <p>
11 <a href="http://google.com">
12 <img src="{{ url_for('static', filename='images/sponsors/google-small.png') }}" border=0
13 alt="Google">
14 </a>
15 </p>
16 <p>
17 <a href="http://fogcreek.com">
18 <img src="{{ url_for('static', filename='images/sponsors/fc-small.png') }}" border=0
19 alt="Fog Creek">
20 </a>
21 </p>
22 <p>
23 <a href="http://www.microsoft.com">
24 <img src="{{ url_for('static', filename='images/sponsors/ms-small.png') }}" border=0
25 alt="Microsoft">
26 </a>
27 </p>
28
29 <h3>Silver Sponsors ($5000 to $19999)</h3>
30
31 <!-- 18k pixels -->
32
33 <p>
34 <a href="http://www.atlassian.com/">
35 <img src="{{ url_for('static', filename='images/sponsors/atlassian-small.png') }}" border=0
36 alt="Atlassian">
37 </a>
38 </p>
39 <p>
40 <a href="http://www.janestcapital.com/">
41 <img src="{{ url_for('static', filename='images/sponsors/janest-small.png') }}" border=0
42 alt="Jane Street Capital">
43 </a>
44 </p>
45
46 <p>
47 <a href="http://www.allstontrading.com/">
48 <img src="{{ url_for('static', filename='images/sponsors/allston-small.png') }}" border=0
49 alt="Allston Trading">
50 </a>
51 </p>
52
53 <h3>Bronze Sponsors ($1000 to $4999)</h3>
54
55 <!-- 15k pixels -->
56
57 <p>
58 <a href="http://euedge.com">
59 <img src="{{ url_for('static', filename='images/sponsors/euedge-small.png') }}" border=0
60 alt="EU Edge">
61 </a>
62 </p>
63 <p>
64 <a href="http://mozilla.org">
65 <img src="{{ url_for('static', filename='images/sponsors/moz-small.png') }}" border=0
66 alt="Mozilla Foundation">
67 </a>
68 </p>
69 <p>
70 <a href="http://symbian.org">
71 <img src="{{ url_for('static', filename='images/sponsors/symbian-small.png') }}" border=0
72 alt="Symbian Foundation">
73 </a>
74 </p>
75 <p>
76 <a href="http://python.org/psf">
77 <img src="{{ url_for('static', filename='images/sponsors/python-small.png') }}"
78 border=0 alt="Python Software Foundation">
79 </a>
80 </p>
81 <p>
82 <a href="http://www.jetbrains.com">
83 <img src="{{ url_for('static', filename='images/sponsors/jetbrains-small.png') }}"
84 border=0 alt="JetBrains">
85 </a>
86 </p>
87 {% endblock %}
88
89 {% block sidebar %}
90 <h3>About</h3>
91 <p>
92 The Mercurial project is raising money for the project and to sponsor Matt Mackall, the primary
93 Mercurial author and project leader, to work full-time on Mercurial development.</p>
94 <p>The current status is tracked in <a href="/wiki/mpm" title="mpm in the Mercurial wiki">his wikipage</a>.</p>
95 <p>For information on sponsorship, contact Matt Mackall (mpm@selenic.com). For individual donations, see our <a href="http://www.selenic.com/mercurial/donations.html">donations page</a>.</p>
96 {% endblock %}