indexden is now optional
[oweals/karmaworld.git] / karmaworld / templates / about.html
1 {% extends "base.html" %}
2 {% load url from future %}
3 {% load humanize %}
4 {% load compress %}
5
6 {% block pagestyle %}
7   {% compress css %}
8     <link rel="stylesheet" type="text/css" media="all" href="{{ STATIC_URL }}css/about.css">
9   {% endcompress %}
10 {% endblock %}
11
12 {% block title %}
13   Mission, Vision, Team &amp; Scoreboard
14 {% endblock %}
15
16 {% block raw_content %}
17   <section id="about_content">
18
19     <div class="row">
20       <div class="small-12 columns flex-video vimeo">
21         <iframe src="//player.vimeo.com/video/52954469" title="0" width="960" height="436" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
22       </div>
23
24     </div>
25
26     <div class="row">
27       <div id="about_copy_header" class="small-12 columns museo700">
28         Help us spread the academic wealth.
29       </div>
30     </div>
31
32     <div class="row">
33       <div id="about_copy_body" class="small-12 columns">
34         <p>KarmaNotes empowers college students to share course notes, study guides, and other digital learning resources online. By exchanging knowledge on KarmaNotes, everyone benefits from access to a growing database of knowledge.</p>
35         <p>All content on KarmaNotes is licensed Creative Commons and all code is <a href="https://github.com/FinalsClub/karmaworld">free and open source</a>. We also maintain full compliance with the Digital Millennium Copyright Act.</p>
36         <p>Beyond the ivory tower, KarmaNotes is a network with the potential to digitize education, one lecture at a time.  Like a give-a-penny jar, KarmaNotes collects knowledge for the common good. Best of all, our capacity is practically limitless, and withdrawals are entirely free. </p>
37         <p>KarmaNotes is improving access to learning resources thanks to support from the William and Flora Hewlett Foundation and generous scholars like you. Want to get involved or learn more? Please <a href="mailto:info@finalsclub.org?Subject=Karma%20question">contact us</a> or support our mission with a tax-deductible charitable donation to the FinalsClub Foundation.</p>
38       </div> <!--/about_copy_body-->
39     </div>
40
41
42     <div id="" class="row panel">
43
44       <div id="donate-text" class="small-12 small-centered columns large-6 large-uncentered">
45         <div class="row">
46           <div id="donate_copy_header" class="museo300">Love KarmaNotes?</div>
47           <!-- /donate_copy_header -->
48         </div> <!--.row-->
49         <div class="row">
50           <div id="donate_copy_body" class="">Support free and open education.</div>
51           <!-- /donate_copy_body -->
52         </div> <!--.row-->
53       </div> <!--small-12 columns large-8-->
54
55
56       <div class="small-12 small-centered columns large-6 large-uncentered">
57         <!-- Amazon form submit for donations -->
58         <form id="amazon-donate-form" action="https://authorize.payments.amazon.com/pba/paypipeline" method="post">
59           <input type="hidden" name="returnUrl" value="http://KarmaNotes.org" >
60           <input type="hidden" name="processImmediate" value="1" >
61           <input type="hidden" name="accessKey" value="11SEM03K88SD016FS1G2" >
62           <input type="hidden" name="signatureMethod" value="HmacSHA256" >
63           <input type="hidden" name="collectShippingAddress" value="1" >
64           <input type="hidden" name="isDonationWidget" value="1" >
65           <input type="hidden" name="amazonPaymentsAccountId" value="RLXQCTZFRUFP5TMB3RMQC4LKDXN6AKE874PGB9" >
66           <input type="hidden" name="referenceId" value="FinalsClub.org Inc" >
67           <input type="hidden" name="cobrandingStyle" value="logo" >
68           <input type="hidden" name="immediateReturn" value="1" >
69           <input type="hidden" name="description" value="Support the free exchange of student learning resources" >
70           <input type="hidden" name="abandonUrl" value="http://KarmaNotes.org" >
71           <input type="hidden" name="signatureVersion" value="2" >
72           <input type="hidden" name="signature" value="0eQB5Jxoa1rE+NuI7IupDKQUZSjfLwQeZdFnSSwFa+A=" >
73           <!-- Default donation amount -->
74           <input type="hidden" name="amount" value="USD 20" >
75
76           <button id="donate_button" class="button large round expand museo700"  type="submit">
77             DONATE
78           </button>
79         </form>
80       </div> <!--small-12 columns large-6 -->
81
82     </div> <!-- donate button container-->
83
84     <div class="row">
85       <div class="small-12 columns">
86         <div id="leaderboard_header">
87           University Karma Leaderboard
88         </div><!-- /leaderboard_header -->
89       </div>
90     </div>
91
92     <div class="row">
93       <div class="small-12 columns">
94         <div id="leaderboard_copy">
95           These schools are aces at sharing the academic wealth
96         </div>
97       </div><!-- /leaderboard_copy -->
98     </div>
99
100
101     <div class="row">
102       <div id="leaderboard_table" class="small-12 columns">
103
104         {% for school in schools %}
105         <div class="row leaderboard_item">
106           <div class="small-1 column leaderboard_rank">
107             {{ forloop.counter }}
108           </div>
109           <div class="small-8 columns leaderboard_school">
110             {{ school.name }}
111           </div> <!-- /leaderboard_school -->
112           <div class="small-1 column  leaderboard_score">
113             {{ school.file_count }}
114           </div> <!-- /leaderboard_score -->
115         </div> <!-- /leaderboard_item -->
116         {% endfor %}
117
118       </div> <!-- /leaderboard_table -->
119     </div>  
120
121   </section><!--/about_content-->
122 {% endblock %}